-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 829 Bytes
/
setup.py
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
from setuptools import (
setup,
)
def main():
setup(
python_requires=">= 3.8",
setup_requires=[
"setuptools",
"setuptools_scm[toml]",
],
extras_require={
"format": [
"black == 20.8b1",
"flake8 ~= 3.8.0",
],
"test": [
"mypy ~= 0.782",
"pytest ~= 6.0.1",
"pytest-cov ~= 2.8.0",
"hypothesis ~= 5.6.0",
],
"docs": [
"sphinx ~= 3.0.0",
"sphinx_rtd_theme ~= 0.4.3",
"sphinx_autodoc_typehints ~= 1.10.0",
],
"deploy": [
"wheel",
"twine",
],
},
)
if __name__ == "__main__":
main()