-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
33 lines (31 loc) · 1.35 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
from setuptools import setup, find_packages
from appinventor.tfjs.__main__ import __version__
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='appinventor-tfjs',
version=__version__,
description='Tool for generating App Inventor extension skeletons from Tensorflow.js models',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/mit-cml/tfjs-extension-tool',
author='Evan W. Patton',
author_email='[email protected]',
license='Apache',
packages=find_packages(),
entry_points={'console_scripts': ['appinventor-tfjs = appinventor.tfjs.__main__:main']},
python_requires='>=3.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Programming Language :: Python :: 3',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Code Generators'
],
include_package_data=True,
install_requires=['certifi'])