-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
37 lines (33 loc) · 1.1 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
29
30
31
32
33
34
35
36
37
"""
SageMath package for computing various moduli space invariants.
"""
from setuptools import setup
with open("README.rst") as f:
long_description = f.read()
version = {}
with open("msinvar/version.py") as f:
exec(f.read(), version)
setup(
name="msinvar",
author="Sergey Mozgovoy",
author_email="mozhov@gmail.com",
description="SageMath package for computing various moduli space invariants",
long_description=long_description,
version=version["version"],
url="https://github.com/smzg/msinvar",
license="GNU General Public License, version 2",
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python",
],
keywords="SageMath, moduli spaces, invariants",
packages=["msinvar"],
install_requires=[],
)