-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 1017 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
from setuptools import setup
import re
version_data = open('pe/version.py').read()
version = re.match("version = '(.*)'", version_data).groups()[0]
setup( name = 'pe',
version = version,
install_requires = ['snappy>=2.6.1'],
dependency_links = [],
packages = ['pe'],
package_dir = {'pe' : 'pe'},
zip_safe = False,
description= 'Peripherally (parabolic) and elliptic reprs of 3-manifold groups',
author = 'Marc Culler and Nathan M. Dunfield',
author_email = '[email protected], [email protected]',
license='GPLv2+',
url = 'https://bitbucket.org/t3m/pe',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
],
)