-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 1.04 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
import re
import setuptools
with open("README.rst", "rb") as f:
# Explicitly specify encoding to ensure `python setup.py egg_info` works
# on Windows.
long_description = f.read().decode('utf-8')
long_description = re.sub(r":math:`(.+?)`", r"\1", long_description)
long_description = re.sub(r".. math::\n\n", "", long_description)
setuptools.setup(
name="burau",
version="0.0.4",
author="Søren Fuglede Jørgensen",
author_email="pypi@fuglede.dk",
description="Search for non-trivial elements of the kernel of the Burau "
+ "representation of the four-strand braid group.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/fuglede/burau",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=["numba", "numpy"],
tests_require=["pytest"],
)