forked from Kaufman-Lab-Columbia/k-DBCV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 991 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 991 Bytes
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
from setuptools import setup
def read_long_description():
with open('README.md', 'r') as open_file_description:
return open_file_description.read()
def read_requirements():
with open('requirements.txt', 'r') as open_file_requirements:
return open_file_requirements.read()
setup(
name='kDBCV',
version='1.0.0',
description='Efficient implementation of DBCV with a k-dimensional tree',
long_description_content_type='text/markdown',
long_description=read_long_description(),
author='Joseph L. Hammer, Alexander J. Devanny',
author_email='[email protected]',
url='https://github.com/Kaufman-Lab-Columbia/k-DBCV',
packages=['kDBCV'],
license ="MIT",
keywords = "cluster clusters clustering",
install_requires=read_requirements(),
classifiers=['License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'
]
)