This repository has been archived by the owner on Sep 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
43 lines (41 loc) · 1.59 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='s2aio',
version='1.18',
packages=['s2aio'],
install_requires=['pymata-aio>=2.22',
'aiohttp>=3.3.2'],
package_data={'s2aio': [('configuration/*.cfg'),
('miscellaneous/*.txt, *.csv, *.ods'),
('ScratchFiles/ExtensionDescrptors/*.s2e'),
('ScratchFiles/ScratchProjects/*.sb2'),
('Snap!Files/*.xml')]},
entry_points={
'console_scripts': [
's2aio = s2aio.__main__:main'
]
},
url='https://github.com/MrYsLab/s2aio/wiki',
download_url='https://github.com/MrYsLab/s2aio',
license='GNU General Public License v3 (GPLv3)',
author='Alan Yorinks',
author_email='[email protected]',
description='A Scratch 2.0 (Offline) Hardware Extension for Arduino',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['Firmata', 'Arduino', 'Scratch'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Education',
],
)