-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (37 loc) · 1.17 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
"""
see https://docs.micropython.org/en/latest/reference/packages.html
"""
import sys
import setuptools
import sdist_upip
with open("README.md", "r") as fh:
long_description = fh.read()
name = "micropython-ADCOverUDP"
version = "0.3"
print("setuptools va inclure les paquets %s" % [ setuptools.find_packages() ], file=sys.stderr)
setuptools.setup(
name=name,
version=version,
author="la Fleur",
author_email="lafleur@boum.org",
license="GNUv3",
#description=long_description[:long_description.find("\n")]
description="Send signals read from ADC over UDP broadcast (and use them).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lafleurdeboum/ADCOverUDP",
classifiers=[
'Development Status :: 4 - Beta',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
#"Platform :: ESP",
],
packages=setuptools.find_packages(),
install_requires=[
"micropython-ssd1306",
],
#extras_require={
# "OLED printout": "ssd1306",
#},
cmdclass={'sdist': sdist_upip.sdist}
)