-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
38 lines (34 loc) · 1 KB
/
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
34
35
36
37
38
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name = 'autocluster',
version = '0.5.2',
description = 'Automated machine learning toolkit for performing clustering tasks.',
long_description_content_type = "text/markdown",
long_description = README,
license = 'BSD-3-clause',
packages = find_packages(),
author = 'Wong Wen Yan',
author_email = '[email protected]',
keywords = ['automl', 'clustering', 'bayesian-optimization', 'hyperparameter-optimization'],
url = 'https://github.com/wywongbd/autocluster',
download_url = 'https://pypi.org/project/autocluster/'
)
install_requires = [
'joblib',
'cycler',
'kiwisolver',
'matplotlib',
'numpy',
'pandas',
'pyparsing',
'python-dateutil',
'pytz',
'scikit-learn',
'scipy',
'six',
'sklearn'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)