-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (43 loc) · 1.11 KB
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
[build-system]
requires = [
"setuptools>=80",
"wheel",
"setuptools-scm>=8,<11",
"mypy[mypyc]==2.1.0",
"pandas-stubs==2.3.3.260113; python_version < '3.11'",
"pandas-stubs==3.0.0.260204; python_version >= '3.11'",
"pony-stubs==0.5.2",
"types-aiofiles",
"types-tqdm",
"dank-mids==4.20.213; platform_system == 'MacOS' or (platform_system == 'Linux' and platform_machine != 'i686')",
"eth-brownie==1.22.2; sys_platform=='linux' and platform_machine != 'i686'",
"eth-retry==0.3.7",
"eth-typing==5.2.1",
"evmspec==0.5.2; sys_platform!='win32'",
"ez-a-sync>=0.34,<0.35",
"faster-async-lru==2.0.5.3",
"typed-envs==0.2.4",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
version_scheme = "python-simplified-semver"
[tool.mypy]
exclude = ["build/","cache/","env/"]
plugins = ["typed_envs.mypy_plugin", "a_sync_mypy_plugin"]
[tool.black]
line-length = 100
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hypothesis
| \.mypy_cache
| \.pytest_cache
| \.venv
| cache
| dist
| env
)/
'''