mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-08 18:38:51 -06:00
Move all dependencies to setup.py
This commit is contained in:
37
setup.py
37
setup.py
@@ -19,17 +19,30 @@ setup(
|
||||
packages=find_namespace_packages(),
|
||||
python_requires=">=3.6",
|
||||
install_requires=[
|
||||
"docopt",
|
||||
"matplotlib",
|
||||
"networkx",
|
||||
"numpy",
|
||||
"pandas",
|
||||
"p_tqdm",
|
||||
"pyomo",
|
||||
"python-markdown-math",
|
||||
"seaborn",
|
||||
"sklearn",
|
||||
"overrides",
|
||||
"tqdm",
|
||||
"matplotlib>=3,<4",
|
||||
"networkx>=2,<3",
|
||||
"numpy>=1,<2",
|
||||
"p_tqdm>=1,<2",
|
||||
"pandas>=1,<2",
|
||||
"pyomo>=5,<6",
|
||||
"pytest>=6,<7",
|
||||
"python-markdown-math>=0.8,<0.9",
|
||||
"seaborn>=0.11,<0.12",
|
||||
"scikit-learn>=0.24,<0.25",
|
||||
"tqdm>=4,<5",
|
||||
"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