-
Notifications
You must be signed in to change notification settings - Fork 58
/
setup.py
26 lines (23 loc) · 939 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
import setuptools
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setuptools.setup(
name="GraphRicciCurvature",
version="0.5.3.2",
author="Chien-Chun Ni",
author_email="[email protected]",
description="Compute discrete Ricci curvatures and Ricci flow on NetworkX graphs.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/saibalmars/GraphRicciCurvature",
setup_requires=["cython", "numpy"], # to make sure these two are installed first for dependency.
install_requires=install_requires,
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)