forked from rasbt/mlxtend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (40 loc) · 1.38 KB
/
setup.py
File metadata and controls
47 lines (40 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
from distutils.core import setup
setup(name='mlxtend',
version='0.2.3',
description='Machine Learning Library Extensions',
author='Sebastian Raschka',
url='https://github.com/rasbt/mlxtend',
packages=['mlxtend',
'mlxtend.sklearn',
'mlxtend.matplotlib',
'mlxtend.classifier',
'mlxtend.evaluate',
'mlxtend.preprocessing',
'mlxtend.math',
'mlxtend.text',
'mlxtend.file_io',
'mlxtend.pandas',
'mlxtend.data',
],
data_files = [('', ['LICENSE']),
('', ['docs/README.html']),
('', ['docs/CHANGELOG.txt']),
],
license='GPLv3',
platforms='any',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
],
long_description="""
A library of Python tools and extensions for data science.
Contact
=============
If you have any questions or comments about mlxtend, please feel free to contact me via
eMail: [email protected]
or Twitter: https://twitter.com/rasbt
This project is hosted at https://github.com/rasbt/mlxtend
""",
)