forked from coin-or/python-mip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.04 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
import setuptools
# read the version number
version_dict = {}
exec(open('mip/constants.py').read(), version_dict)
VERSION = version_dict['VERSION']
with open("README.md", "r") as fh:
long_descr = fh.read()
setuptools.setup(
name="mip",
python_requires='>3.5.0',
version=VERSION,
author="Santos, H.G. and Toffolo, T.A.M.",
author_email="[email protected]",
description="Python tools for Modeling and Solving Mixed-Integer Linear \
Programs (MIPs)",
long_description=long_descr,
long_description_content_type="text/markdown",
keywords=["Optimization", "Linear Programming",
"Integer Programming", "Operations Research"],
url="https://github.com/coin-or/python-mip",
packages=['mip', 'mip.libraries'],
package_data={'mip.libraries': ['*', '*.*']},
install_requires=[
'cffi'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
"Operating System :: OS Independent",
],
)