-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
30 lines (27 loc) · 1.03 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
from setuptools import setup, find_packages
import os
# User-friendly description from README.md
current_directory = os.path.dirname(os.path.abspath(__file__))
try:
with open(os.path.join(current_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except Exception:
long_description = ''
setup(
name="rpi_hardware_pwm",
packages=find_packages('.'),
version='0.2.2',
license='OSI Approved :: GNU General Public License v3 (GPLv3)',
description='Control Hardware PWM on the Raspberry Pi',
long_description = long_description,
long_description_content_type='text/markdown',
author='Cam Davidson-Pilon',
author_email='cam@pioreactor.com',
url='https://github.com/Pioreactor/rpi_hardware_pwm',
keywords=["raspberry pi", "pwm", "hardware"],
package_data={"rpi_hardware_pwm": ["py.typed"]},
install_requires=[],
python_requires='>=3.5',
# https://pypi.org/classifiers/
classifiers=["Development Status :: 4 - Beta", "Topic :: System :: Hardware", ]
)