forked from skellet0r/eth-stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.48 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
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "eth-stdlib"
version = "0.2.7"
description = "Ethereum Standard Library for Python"
authors = ["Edward Amor <[email protected]>"]
license = "LGPL-3.0-only"
readme = "README.md"
repository = "https://github.com/skellet0r/eth-stdlib"
documentation = "https://eth-stdlib.readthedocs.io/en/latest"
keywords = ["ethereum"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries"
]
packages = [
{ include = "eth", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.8"
pycryptodome = {version = "^3.18.0"}
hypothesis = {version = "^6.58.0", optional = true}
[tool.poetry.extras]
hypothesis = ["hypothesis"]
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
python-dotenv = "^0.21.0"
[tool.poetry.group.lint.dependencies]
black = "^22.8.0"
flake8 = "^5.0.4"
isort = "^5.10.1"
mypy = "^0.971"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
hypothesis = "^6.54.5"
pytest-cov = "^3.0.0"
[tool.poetry.group.docs.dependencies]
Sphinx = {version = "^5.2.2", allow-prereleases = true}
sphinx-rtd-theme = "^1.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
addopts = "--cov src/ --cov-report term --cov-report html --no-cov-on-fail"