https://github.com/uberparagon/mgn
Revision 8267f9279d00a6e94a8a22566cd6d0ad25b633bc authored by Drew Johnson on 13 September 2017, 06:21:44 UTC, committed by Drew Johnson on 13 September 2017, 06:21:44 UTC
1 parent 1bceb86
Tip revision: 8267f9279d00a6e94a8a22566cd6d0ad25b633bc authored by Drew Johnson on 13 September 2017, 06:21:44 UTC
doctests fixed up
doctests fixed up
Tip revision: 8267f92
setup.py
from distutils.core import setup
try:
from sage.env import SAGE_SRC, SAGE_VERSION
except ImportError:
print "WARNING: This package only works with SageMath."
print "This is version 1.0.9"
with open("README.rst") as f:
long_description = f.read()
setup(
name='mgn',
version='1.0.9',
packages=['strataalgebra', 'topintersections'],
url='https://github.com/uberparagon/mgn',
download_url="https://github.com/uberparagon/mgn/releases/latest/",
license='TODO',
author='Drew Johnson',
author_email='werd2.718@gmail.com',
description='A Sage program for computing products, Faber-Zagier relations, and top intersections on the moduli space of stable curves.',
long_description = long_description
)

Computing file changes ...