-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.19 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
from setuptools import setup
package_name = 'database_cubic_hecke'
def local_scheme(version):
return ""
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=package_name,
packages=[package_name],
package_dir={package_name: package_name},
license='GPL',
description='Ivan Marin\'s representations of the cubic Hecke algebra on 4 strands as Python dictionaries',
long_description=long_description,
long_description_content_type='text/markdown',
author='Sebastian Oehms',
author_email='[email protected]',
url='https://github.com/soehms/database_cubic_hecke',
keywords=['Hecke', 'algebra', 'SageMath', 'database', 'cyclotomic', 'Markov', 'mathematics' ],
install_requires=[],
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3'
],
use_scm_version={"local_scheme": local_scheme},
setup_requires=['setuptools_scm'],
)