mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-06 01:18:52 -06:00
Move all dependencies to setup.py
This commit is contained in:
@@ -1,21 +1 @@
|
|||||||
docopt~=0.6
|
-e .[build]
|
||||||
matplotlib~=3.3
|
|
||||||
mkdocs~=1.1
|
|
||||||
mkdocs-cinder~=1.2
|
|
||||||
networkx~=2.5
|
|
||||||
numpy~=1.19
|
|
||||||
p_tqdm~=1.3
|
|
||||||
pandas~=1.1
|
|
||||||
pyomo~=5.7
|
|
||||||
pytest~=6.1
|
|
||||||
python-markdown-math~=0.8
|
|
||||||
seaborn~=0.11
|
|
||||||
scikit-learn~=0.23
|
|
||||||
tqdm~=4.54
|
|
||||||
black==20.8b1
|
|
||||||
pre-commit~=2.9
|
|
||||||
mypy==0.790
|
|
||||||
pdoc3==0.7.*
|
|
||||||
decorator~=4.4
|
|
||||||
overrides
|
|
||||||
twine
|
|
||||||
|
|||||||
37
setup.py
37
setup.py
@@ -19,17 +19,30 @@ setup(
|
|||||||
packages=find_namespace_packages(),
|
packages=find_namespace_packages(),
|
||||||
python_requires=">=3.6",
|
python_requires=">=3.6",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"docopt",
|
"matplotlib>=3,<4",
|
||||||
"matplotlib",
|
"networkx>=2,<3",
|
||||||
"networkx",
|
"numpy>=1,<2",
|
||||||
"numpy",
|
"p_tqdm>=1,<2",
|
||||||
"pandas",
|
"pandas>=1,<2",
|
||||||
"p_tqdm",
|
"pyomo>=5,<6",
|
||||||
"pyomo",
|
"pytest>=6,<7",
|
||||||
"python-markdown-math",
|
"python-markdown-math>=0.8,<0.9",
|
||||||
"seaborn",
|
"seaborn>=0.11,<0.12",
|
||||||
"sklearn",
|
"scikit-learn>=0.24,<0.25",
|
||||||
"overrides",
|
"tqdm>=4,<5",
|
||||||
"tqdm",
|
"mypy==0.790",
|
||||||
|
"decorator>=4,<5",
|
||||||
|
"overrides>=3,<4",
|
||||||
],
|
],
|
||||||
|
extras_require={
|
||||||
|
"dev": [
|
||||||
|
"docopt>=0.6,<0.7",
|
||||||
|
"mkdocs>=1,<2",
|
||||||
|
"mkdocs-cinder>=1,<2",
|
||||||
|
"black==20.8b1",
|
||||||
|
"pre-commit>=2,<3",
|
||||||
|
"pdoc3>=0.7,<0.8",
|
||||||
|
"twine>=3,<4",
|
||||||
|
]
|
||||||
|
},
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user