-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
41 lines (39 loc) · 1.27 KB
/
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
39
40
41
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="gilp",
version="2.1.0",
author="Henry Robbins",
author_email="hw.robbins@gmail.com",
description="A Python package for visualizing the geometry of linear programs.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/engri-1101/gilp.git",
packages=setuptools.find_packages(),
license="Creative Commons Attribution-NonCommercial-ShareAlike 4.0. https://creativecommons.org/licenses/by-nc-sa/4.0/",
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
install_requires=[
'numpy>=1.19',
'networkx>=2.0',
'typing>=3.7',
'scipy>=1.3',
'plotly>=5'
],
extras_require= {
"dev": ['pytest>=5',
'mock>=3',
'coverage>=4.5',
'tox>=3',
'sphinx>=5',
'sphinx_rtd_theme>=1',
'sphinx_copybutton>=0.5']
},
python_requires='>=3.5',
)