-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (30 loc) · 1.21 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
#!/usr/bin/env python3
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='telemetrix-rpi-pico',
packages=['telemetrix_rpi_pico'],
install_requires=['pyserial'],
version='1.4',
description="Remotely Control And Monitor A Raspberry Pi Pico",
long_description=long_description,
long_description_content_type='text/markdown',
author='Alan Yorinks',
author_email='[email protected]',
url='https://github.com/MrYsLab/telemetrix-rpi-pico',
download_url='https://github.com/MrYsLab/telemetrix-rpi-pico',
keywords=['telemetrix', 'Raspberry_Pi_Pico', 'Protocol', 'Python'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)