https://github.com/uberparagon/mgn
Revision 0256c54b896e3258d819ed789934f233ea913bde authored by Drew Johnson on 19 March 2020, 16:11:03 UTC, committed by Drew Johnson on 19 March 2020, 16:11:03 UTC
to prevent the *.pyc files from being added to the repository
1 parent 092f5af
Tip revision: 0256c54b896e3258d819ed789934f233ea913bde authored by Drew Johnson on 19 March 2020, 16:11:03 UTC
Create .gitignore
Create .gitignore
Tip revision: 0256c54
setup.py
# nodoctest
from distutils.core import setup
try:
from sage.env import SAGE_SRC, SAGE_VERSION
except ImportError:
import warnings
warnings.warn("This package only works with SageMath!")
version = "1.1.1"
print("This is version {}".format(version))
with open("description.rst") as f:
long_description = f.read()
setup(
name='mgn',
version=version,
packages=['strataalgebra', 'topintersections'],
url='https://github.com/uberparagon/mgn',
license='MIT',
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 ...