forked from mcauser/micropython-tm1637
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
33 lines (29 loc) · 1022 Bytes
/
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
import sys
from setuptools import setup
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
sys.path.pop(0)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='raspberrypi-tm1637',
py_modules=['tm1637'],
version='1.3.7',
description='Raspberry Pi Python port from MicroPython library for TM1637 LED driver.',
long_description=long_description,
long_description_content_type="text/markdown",
keywords='tm1637 raspberry pi seven segment led python',
url='https://github.com/depklyon/raspberrypi-tm1637',
author='Mike Causer',
author_email='[email protected]',
maintainer='Patrick Palma',
maintainer_email='[email protected]',
license='MIT',
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
],
python_requires='>=3',
install_requires=['RPi.GPIO']
)