-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
27 lines (27 loc) · 934 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 distutils.core import setup
setup(
name = 'tinymlgen',
packages = ['tinymlgen'],
version = '0.3',
license='MIT',
description = 'Generate C code for microcontrollers from Tensorflow models',
author = 'Simone Salerno',
author_email = '[email protected]',
url = 'https://github.com/eloquentarduino/tinymlgen',
download_url = 'https://github.com/eloquentarduino/tinymlgen/archive/v_03.tar.gz',
keywords = ['ML', 'microcontrollers', 'tensorflow', 'machine learning'],
install_requires=[
'tensorflow',
'hexdump'
],
classifiers=[
'Development Status :: 3 - 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',
],
)