-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (19 loc) · 825 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
from distutils.core import setup
import sys, os, os.path
setup(name = 'pytorovich',
version = '0.1.1',
description = 'Pytorovich is a PyGLPK wrapper for solving Linear Programming problems in a civilized manner. ',
author = 'Mario Romero',
author_email = '[email protected]',
url = 'http://github.com/mariorz/pytorovich',
license = 'GPL',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Operating System :: Platform Independent',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules' ],
py_modules=['pytorovich']
)