-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.47 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (38 loc) · 1.47 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
#!/usr/bin/env python3
from setuptools import setup
def readme():
with open('README.md', 'r', encoding="utf-8") as f:
return f.read()
setup(name='upydevice',
version='0.3.8',
description='Python library to interface with MicroPython devices',
long_description=readme(),
long_description_content_type='text/markdown',
url='http://github.com/Carglglz/upydevice',
author='Carlos Gil Gonzalez',
author_email='carlosgilglez@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: System :: Monitoring',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Terminals'
],
license='MIT',
packages=['upydevice'],
zip_safe=False,
scripts=[],
include_package_data=True,
install_requires=['pyserial', 'dill', 'unsync',
'bleak>=0.12.1', 'bleak_sigspec>=0.0.4', 'netifaces~=0.11.0',
'python-nmap~=0.7.1'])