forked from GuipengLi/Dcluster
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 639 Bytes
/
setup.py
File metadata and controls
16 lines (15 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup
setup(
name = 'Dcluster',
packages = ['Dcluster'], # this must be the same as the name above
version = '0.5.2',
description = 'A Python package for Clustering by fast search and find of density peaks',
author = 'Guipeng Li',
author_email = 'guipenglee@gmail.com',
url = 'https://github.com/GuipengLi/Dcluster', # use the URL to the github repo
keywords = ['Cluster', 'fast', 'density'], # arbitrary keywords
classifiers = [],
long_description=open('README.rst').read(),
include_package_data=True,
install_requires=["numpy >= 1.2.0", "matplotlib >= 1.1.0"],
)