-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.35 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.35 KB
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
if __name__ == '__main__':
setup(
name='hawks',
version='0.2.0',
author='Cameron Shand',
author_email='c.shand@ucl.ac.uk',
packages=find_packages(),
url='https://github.com/sea-shunned/hawks',
license='MIT License',
description='A package for generating synthetic clusters, with parameters to customize different aspects of the complexity of the cluster structure',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
include_package_data=True,
project_urls={
"Documentation": "https://hawks.readthedocs.io/"
},
python_requires='>=3.6',
install_requires=[
"deap >= 1.2.2",
"matplotlib >= 3.0",
"numpy >= 1.15",
"orange3 >= 3.23",
"pandas >= 0.23",
"scikit-learn >= 0.20",
"scipy >= 1.1",
"seaborn >= 0.9.0",
"tqdm >= 4.15",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
)