-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (26 loc) · 969 Bytes
/
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
import os
from setuptools import setup, find_packages
import flipy
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="flipy",
author="FreeWheel",
description="FreeWheel Linear Programming Interface for Python",
long_description=read('README.md'),
long_description_content_type='text/markdown',
version=flipy.version,
packages=find_packages(),
include_package_data=True,
package_data={'flipy.solvers': ['bin/*/**']},
install_requires=[],
classifiers=[
'Operating System :: Microsoft :: Windows', 'Operating System :: MacOS :: MacOS X', 'Operating System :: POSIX',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only'
],
)