-
Notifications
You must be signed in to change notification settings - Fork 273
/
setup.py
72 lines (58 loc) · 2.4 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""Setup file for installing mlbox package."""
# !/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('requirements.txt', 'rt') as fh:
requirements = fh.read().splitlines()
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('VERSION.txt') as version_file:
version = version_file.read()
setup(
name='mlbox',
version=version,
description="A powerful Automated Machine Learning python library.",
long_description=readme,
author="Axel ARONIO DE ROMBLAY",
author_email='[email protected]',
url='https://github.com/AxeldeRomblay/mlbox',
packages=['mlbox', 'mlbox.encoding', 'mlbox.model',
'mlbox.optimisation', 'mlbox.prediction',
'mlbox.preprocessing',
'mlbox.model.classification',
'mlbox.model.regression',
'mlbox.preprocessing.drift'],
package_dir={'mlbox': 'mlbox',
'mlbox.encoding': 'mlbox/encoding',
'mlbox.model': 'mlbox/model',
'mlbox.optimisation': 'mlbox/optimisation',
'mlbox.prediction': 'mlbox/prediction',
'mlbox.preprocessing': 'mlbox/preprocessing',
'mlbox.model.classification': 'mlbox/model/classification',
'mlbox.model.regression': 'mlbox/model/regression',
'mlbox.preprocessing.drift': 'mlbox/preprocessing/drift'
},
include_package_data=True,
install_requires=requirements,
zip_safe=False,
license='BSD-3',
keywords='mlbox auto-ml stacking pipeline optimisation',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
test_suite='tests',
tests_require=requirements
)