forked from dit/dit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
109 lines (103 loc) · 2.19 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["flit", "setuptools"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "dit"
author = "chebee7i, Ryan G. James"
author-email = "[email protected], [email protected]"
home-page = "http://dit.io"
requires-python = ">=3.6"
description-file = "README.rst"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
]
requires = [
"boltons",
"debtcollector",
"lattices >= 0.3.3",
"networkx",
"numpy >= 1.11",
"PLTable",
"scipy >= 0.15.0",
]
[tool.flit.metadata.requires-extra]
test = [
"codecov",
"hypothesis >= 3.56.2",
"hypothesis[numpy]",
"pytest >= 4.4.0",
"pytest-cov",
"pytest-rerunfailures",
"pytest-xdist",
]
optional = [
"colorama",
"cython",
"hypothesis >= 3.56.2",
"hypothesis[numpy]",
"matplotlib",
"numdifftools",
"pint",
"pypoman",
"python-ternary",
"scikit-learn",
]
doc = [
"ipython[nbconvert]",
"sphinx",
]
dev = [
"codecov",
'coverage[toml]',
'darglint',
'flake8',
'flake8-awesome',
'flake8-bandit',
'flake8-broken-line',
'flake8-bugbear',
'flake8-coding',
'flake8-commas',
'flake8-docstrings',
'flake8-import-order',
'flake8-rst',
'flake8-rst-docstrings',
'flake8-self',
'flake8-todos',
"hypothesis >= 3.56.2",
"hypothesis[numpy]",
"ipython[nbconvert]",
"nxpd",
"pytest >= 4.4.0",
"pytest-cov",
"pytest-rerunfailures",
"pytest-xdist",
'radon',
"sphinx",
]
[tool.poetry]
name = "dit"
version = "1.5"
description = ""
authors = [
"chebee7i <[email protected]>",
"Ryan G. James <[email protected]>",
]
[tool.poetry.dependencies]
python = "^3.3"
boltons = "*"
debtcollector = "*"
lattices = "^0.3.3"
networkx = "*"
numpy = "^1.11"
PLTable = "*"
scipy = "^0.15.0"
[tool.poetry.dev-dependencies]
pytest = "^3.4"