-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
81 lines (76 loc) · 1.77 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
80
81
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "pynso"
dist-name = "pynso-restconf"
author = "SURF"
author-email = "[email protected]"
home-page = "https://github.com/workfloworchestrator/pynso-restconf"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed"
]
description-file = "README.rst"
requires = [
"requests",
"bumpversion"
]
requires-python = ">=3.6"
[tool.flit.metadata.urls]
Documentation = "http://workfloworchestrator.org/pynso-restconf/"
[tool.flit.metadata.requires-extra]
test = [
"black",
"flake8",
"flake8-bandit",
"flake8-bugbear",
"flake8-comprehensions",
"flake8-docstrings",
"flake8-logging-format",
"flake8-pep3101",
"flake8-print",
"flake8-rst",
"flake8-rst-docstrings",
"isort",
"mypy==0.790",
"pytest",
"pytest-cov",
"pygments",
"requests-mock"
]
all = [
"requests",
"bumpversion",
]
[tool.isort]
profile="black"
line_length = 120
forced_separate = "pynso"
[tool.black]
line-length = 120
target-version = ["py38"]
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| src
)/
)
'''