-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1.36 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
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.txt").read_text()
setuptools.setup(
author="Mohammadreza Barghi",
author_email="info@genesiscube.ir",
name='autooptimizer',
license="MIT",
description='AutoOptimizer is a python package for optimize machine learning algorithms.',
version='v0.8.9',
long_description= long_description,
long_description_content_type="text/markdown",
url='https://github.com/mrb987/autooptimizer',
packages=setuptools.find_packages(),
python_requires=">=3",
install_requires=['sklearn',
'numpy',
'pandas'],
keyword=['optimize machine learning models', 'machine learning', 'sklearn', 'data science','regression metrics','outlier removal','optimize models'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Topic :: Communications :: Email',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Operating System :: OS Independent',],
)