forked from flatsurf/sage-flatsurf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 1.09 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
from distutils.core import setup
with open('README.rst') as f:
long_description = f.read()
from flatsurf.version import version
setup(name='sage_flatsurf',
author='Vincent Delecroix and W. Patrick Hooper',
author_email = '[email protected]',
description="flat surfaces",
long_description=long_description,
long_description_content_type="text/x-rst",
version=version,
url='https://github.com/videlec/sage-flatsurf',
license='GNU General Public License, version 2',
packages = ['flatsurf', 'flatsurf.geometry', 'flatsurf.graphical'],
install_requires = ['surface_dynamics'],
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',
],
keywords='surfaces, dynamics, geometry, flat surfaces, Abelian differentials, quadratic differentials, Riemann surfaces',
)