-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (28 loc) · 932 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
30
31
32
33
from setuptools import setup
import multiprocessing
version = '0.3.0'
install_requires = ["scipy >= 0.13.3",
"numpy >=1.8.1"]
tests_require = ["nose"]
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
setup(
name='ddbscan',
version=version,
author='Allan Inocencio de Souza Costa',
author_email='allan@cloudwalk.io',
url='https://github.com/cloudwalkio/ddbscan',
packages=['ddbscan'],
license='MIT',
description='Discrete DBSCAN algorithm optimized for discrete and bounded data.',
long_description=open('README.rst').read(),
test_suite = 'nose.collector',
tests_require=tests_require,
install_requires=install_requires,
classifiers=classifiers,
)