-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 997 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
from setuptools import find_packages, setup
classifiers = [
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
]
setup(
name='aisaratuners',
version='1.5.0',
description='leveraging aisara algorithm for effective hyperparameter tuning',
license='LICENSE.txt',
long_description=open('README.md').read() + '\n\n' +
open('CHANGELOG.txt').read(),
project_urls={
'Source Code': 'https://github.com/aisara-hub/aisaratuners',
'Documentation': 'https://github.com/aisara-hub/aisaratuners/blob/master/docs/user%20guide.md'
},
author='AiSara Artificial Intelligence',
author_email='[email protected]',
classifiers=classifiers,
python_requires='>=3.6',
packages=find_packages(exclude=['tests', 'data', 'docs']),
install_requires=['requests', 'pandas', 'numpy',
'plotly >= 4.6.0', 'tensorflow >= 1.15']
)