forked from christopherjenness/DBCV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 857 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
#!/usr/bin/env python
from setuptools import setup, find_packages
DISTNAME = 'DBCV'
DESCRIPTION = 'Density Based Clustering Validation'
MAINTAINER = 'Christopher Jenness'
URL = 'https://github.com/christopherjenness/dbcv'
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3']
if __name__ == "__main__":
setup(name=DISTNAME,
maintainer=MAINTAINER,
description=DESCRIPTION,
packages=find_packages(exclude=[
"tests",
"plots"
]),
url=URL,
classifiers=classifiers,
install_requires=[
"numpy",
"scipy"
])