forked from P-Edwards/tdasampling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (20 loc) · 872 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here,"README.rst"),"r") as readmefile:
readme = readmefile.read()
setup(name="tdasampling",
version="1.1.4",
description="Compute dense samples of real algebraic varieties for use with topological data analysis tools.",
long_description=readme,
url="https://github.com/P-Edwards/tdasampling",
author="Parker Edwards",
author_email="[email protected]",
license="MIT",
packages=["tdasampling","tdasampling.search_space"],
classifiers =["Development Status :: 3 - Alpha","License :: OSI Approved :: MIT License","Programming Language :: Python :: 2.7"],
install_requires=["numpy","Rtree","sympy"],
python_requires="<3",
scripts=["bin/tdasampling","bin/sampling-setup"],
dependency_links=["https://bertini.nd.edu/"],
zip_safe=False)