-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (32 loc) · 1.12 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
#!/usr/bin/env bash
r"""
Installation script for the Macaw module
It depends on distutils
"""
# try:
# from sage.env import SAGE_SRC
# except ImportError:
# raise ValueError("this package currently installs only inside SageMath (http://www.sagemath.org)")
from distutils.core import setup
# from distutils.extension import Extension
# from Cython.Build import cythonize
# import sys, os
setup(name='Macaw',
version='0.23',
description="Macaw",
author='Balazs Strenner',
author_email='[email protected]',
url='http://www.math.gatech.edu/~bstrenner7',
license="GPL v3",
packages=['macaw',
'macaw/train_tracks',
'macaw/train_tracks/dehn_thurston'],
classifiers=[
'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',
],
keywords='surfaces, mapping class groups, train tracks, measured laminations',
)