forked from pmacg/py-sgtl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.03 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
from setuptools import setup, find_packages
VERSION = '0.4.6'
DESCRIPTION = 'SGTL - Spectral Graph Theory Library'
LONG_DESCRIPTION =\
"This library provides several methods and algorithms relating to spectral graph theory in python.\n\n" \
"Documentation is available [here](https://sgtl.readthedocs.io/en/latest/)."
# Setting up
setup(
name="sgtl",
version=VERSION,
author="Peter Macgregor",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=["numpy", "scipy", "sklearn"],
long_description_content_type='text/markdown',
keywords=['python', 'spectral', 'graph', 'algorithms', 'clustering', 'cheeger'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
'Operating System :: POSIX :: Linux'
]
)