-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
70 lines (65 loc) · 1.88 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "agraffe"
authors = [
{name = "odd", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License"
]
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
dependencies = [
"typing-extensions >=4.0.0, <5.0.0"
]
dynamic = ["version", "description"]
[project.urls]
Home = "https://github.com/odd12258053/agraffe"
#Source = "https://github.com/odd12258053/agraffe"
#Documentation = "https://github.com/odd12258053/agraffe/blob/master/README.md"
[project.optional-dependencies]
test = [
"pytest >=7.2.1, <8.0.0",
"mypy ==0.931",
"flake8 >=4.0.1, <5.0.0",
"black ==22.3.0",
"isort >=5.10.1, <6.0.0",
"azure-functions >=1.5.0, <2.0",
"functions-framework ==3.0.0",
"fastapi >=0.94.0",
"pydantic >=1.10.4",
"python-multipart >=0.0.5",
]
dev = [
"mypy ==0.931",
"flake8 >=4.0.1, <5.0.0",
"black ==22.3.0",
"isort >=5.10.1, <6.0.0",
"azure-functions >=1.5.0, <2.0",
]
doc = []
[tool.isort]
py_version = "37"
profile = "black"
include_trailing_comma = true
multi_line_output = 3
[tool.black]
line-length = 88
target-version = ['py37']
skip-string-normalization = true