-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
46 lines (43 loc) · 1.52 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from aiatools import __version__
with open('README.md') as f:
long_description = f.read()
setup(name='aiatools',
version=__version__,
description='Tools for extracting information from App Inventor AIA files',
long_description=long_description,
long_description_content_type="text/markdown",
author='Evan W. Patton',
author_email='[email protected]',
url='https://github.com/mit-cml/aiatools',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development',
'Topic :: Utilities'
],
license='GPLv3+',
keywords='App Inventor AIA extraction analysis toolkit',
entry_points={
'console_scripts': [
'aia = aiatools:aia_main'
]
},
install_requires=[
'jprops>=2.0.2'
],
package_data={
'aiatools': ['simple_components.json', 'alexa-devices.json']
}
)