-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
79 lines (68 loc) · 1.99 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "content-hash"
description = "Python implementation of EIP 1577 content hash"
authors = [{ email = "[email protected]", name = "Filip Š" }]
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Typing :: Typed",
]
keywords = [
"ethereum",
"ethereum-name-service",
"ens",
"eip1577",
"erc1577",
"web3",
"decentralized",
]
dependencies = [
"multiformats>=0.3.1.post4",
"base58check==1.0.2", # for b58 encode/decode
"pycryptodomex", # required by multiformats for keccak
]
[project.optional-dependencies]
lint = ["pylint", "black", "mypy"]
test = ["pytest", "pytest-cov"]
[project.urls]
Homepage = "https://github.com/filips123/ContentHashPy/"
Repository = "https://github.com/filips123/ContentHashPy.git"
Issues = "https://github.com/filips123/ContentHashPy/issues"
Changelog = "https://github.com/filips123/ContentHashPy/releases"
[tool.setuptools_scm]
fallback_version = "0.0.0"
[tool.pylint]
max-line-length = 110
[tool.black]
line-length = 110
disable = ["R0801"]
[tool.mypy]
python_version = "3.8"
show_column_numbers = true
show_error_codes = true
allow_redefinition = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
warn_no_return = true
warn_return_any = true
warn_unreachable = true
exclude = "__main__.py"