forked from MrYsLab/s3-extend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (58 loc) · 2.19 KB
/
setup.py
File metadata and controls
62 lines (58 loc) · 2.19 KB
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
54
55
56
57
58
59
60
61
62
from setuptools import setup
with open('pypi_desc.md') as f:
long_description = f.read()
setup(
name='s3-extend',
version='1.17',
packages=[
's3_extend',
's3_extend.gateways'
],
install_requires=[
'python-banyan>=3.9',
'pymata-express>=1.11',
'pymata_rh',
'pymata-cpx',
'tmx-pico-aio',
'telemetrix-aio'
],
entry_points={
'console_scripts': [
's3a = s3_extend.s3a:s3ax',
's3c = s3_extend.s3c:s3cx',
's3e = s3_extend.s3e:s3ex',
's3p = s3_extend.s3p:s3px',
's3r = s3_extend.s3r:s3rx',
's3rh = s3_extend.s3rh:s3rhx',
's3rp = s3_extend.s3rp:s3rpx',
'ardgw = s3_extend.gateways.arduino_gateway:arduino_gateway',
'cpxgw = s3_extend.gateways.cpx_gateway:cpx_gateway',
'espgw = s3_extend.gateways.esp8266_gateway:esp8266_gateway',
'pbgw = s3_extend.gateways.picoboard_gateway:picoboard_gateway',
'rpigw = s3_extend.gateways.rpi_gateway:rpi_gateway',
'rhgw = s3_extend.gateways.robohat_gateway:robohat_gateway',
'rpgw = s3_extend.gateways.rpi_pico_gateway:rpi_pico_gateway',
'wsgw = s3_extend.gateways.ws_gateway:ws_gateway',
]
},
url='https://github.com/MrYsLab/s3-extend',
license='GNU Affero General Public License v3 or later (AGPLv3+)',
author='Alan Yorinks',
author_email='MisterYsLab@gmail.com',
description='A Non-Blocking Event Driven Applications Framework',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['Scratch3', 'Arduino', 'ESP-8266', 'Raspberry Pi'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Topic :: Education',
'Topic :: Software Development',
'Topic :: System :: Hardware'
],
)