https://github.com/uberparagon/mgn
Revision a6c0d3c287a84780e31a836677238cef31070467 authored by System Administrator on 12 September 2017, 19:30:53 UTC, committed by System Administrator on 12 September 2017, 19:30:53 UTC
1 parent bebc795
Tip revision: a6c0d3c287a84780e31a836677238cef31070467 authored by System Administrator on 12 September 2017, 19:30:53 UTC
added manifest.in
added manifest.in
Tip revision: a6c0d3c
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 ...