https://github.com/uberparagon/mgn
Revision 1bceb8639f5a15c2e4f1f1c3602210aa5ed7d2e4 authored by Drew Johnson on 13 September 2017, 05:33:29 UTC, committed by Drew Johnson on 13 September 2017, 05:33:29 UTC
1 parent a6c0d3c
Tip revision: 1bceb8639f5a15c2e4f1f1c3602210aa5ed7d2e4 authored by Drew Johnson on 13 September 2017, 05:33:29 UTC
improved some docs, discoverd bug in top intersectsions
improved some docs, discoverd bug in top intersectsions
Tip revision: 1bceb86
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 ...