-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.2 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "bstruct"
version = "0.6.1"
description = "Simple and efficient binary (de)serialization using type annotations."
authors = ["flxbe <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/flxbe/bstruct"
documentation = "https://bstruct.readthedocs.io"
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Typing :: Typed",
]
[tool.poetry.urls]
Changelog = "https://github.com/flxbe/bstruct/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.test.dependencies]
pytest = "^7.1"
black = "^22.8.0"
pyright = "^1.1.271"
construct = "2.10.68"
pyperf = "^2.5.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^5.3.0"
sphinx-copybutton = "^0.5.1"
myst-parser = "^0.18.1"
furo = "^2022.12.7"
[tool.poetry.group.dev.dependencies]
coverage = "^7.0.3"
snakeviz = "^2.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
typeCheckingMode = "strict"
useLibraryCodeForTypes = true
reportMissingTypeStubs = false
[tool.ruff]
select = ["I"]