-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup_template.py
53 lines (51 loc) · 1.24 KB
/
setup_template.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
from distutils.core import setup
packages=PACKAGES
data=TEMPLATES
setup(
name='everywhereml',
packages=packages,
version='VERSION',
license='MIT',
description='Train ML in Python, run everywhere',
author='Simone Salerno',
author_email='[email protected]',
url='https://github.com/eloquentarduino/everywhereml',
download_url='https://github.com/eloquentarduino/everywhereml/blob/master/dist/everywhereml-VERSION.tar.gz?raw=true',
keywords=[
'ML',
'machine learning'
],
install_requires=[
'numpy',
'pandas',
'seaborn',
'scikit-learn',
'scikit-image',
'Jinja2',
'cached-property',
'umap-learn',
'python-slugify',
'hexdump',
'jinja2_workarounds',
'requests',
'pySerial',
'tqdm',
'hexdump'
],
extras_require={
'tf': ['tensorflow']
},
package_data={
'everywhereml': data
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Code Generators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)