-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (38 loc) · 798 Bytes
/
pyproject.toml
File metadata and controls
46 lines (38 loc) · 798 Bytes
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
[project]
name = "dao_python"
version= "0.0.1"
authors = [
{name = "Torok Mark Patrik", email = "torok.mark.patrik@gmail.com"},
]
description = "Pet project for learning"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["eth-brownie==1.19.3", "pydantic==1.10.9"]
[build-system]
requires = ["setuptools", "wheel"]
[project.optional-dependencies]
test = [
"pytest==6.2.5",
"pytest-cov~=4.1.0",
]
lint = [
"black==22.10.0",
"ruff==0.0.272",
]
dev=["dao_python[test,lint]"]
[tool.setuptools]
py-modules = []
[tool.ruff]
line-length = 88
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
extend-exclude = '''
/(
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''