-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 988 Bytes
/
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
# -*- coding: utf-8 -*-
import os
import codecs
from distutils.core import setup
from distutils.cmd import Command
def readfile(filename):
with codecs.open(filename, encoding='utf-8') as f:
return f.read()
setup(
name='hecke_hurwitz',
version='0.0',
description='A Python module that depends on Sage to discover Hecke-Hurwitz GL(2,R)-orbit closure',
long_description=readfile("README.rst"),
author='Vincent Delecroix',
author_email='[email protected]',
# Remember to update these if the directory structure changes.
packages=['hecke_hurwitz/'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
]
)