-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathsetup.py
29 lines (24 loc) · 837 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
27
28
29
"""Setup script for the package."""
import setuptools
VERSION = "0.2.22"
with open("README.md", "r") as file_object:
LONG_DESCRIPTION = file_object.read()
with open("requirements.txt") as file_object:
INSTALL_REQUIRES = file_object.read().splitlines()
setuptools.setup(
name="spectralcluster",
version=VERSION,
author="Quan Wang",
author_email="[email protected]",
description="Spectral Clustering",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/wq2012/SpectralCluster",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=INSTALL_REQUIRES,
)