-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (33 loc) · 1.61 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
#!/usr/bin/env python
from setuptools import setup
def read_content(filepath):
with open(filepath, 'r') as f:
return f.read()
classifiers = ['Development Status :: 5 - Production/Stable',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
'Topic :: Home Automation',
'Topic :: System :: Hardware']
setup(
name = 'rpi_gpio_devices',
version = '2.0.1',
author = 'Daniel Todor',
description = 'This module provides device classes for controlling the gpio ports',
long_description = read_content('README.md'),
long_description_content_type = 'text/markdown',
license = 'MIT',
keywords = ['Raspberry', 'Pi', 'GPIO'],
url = 'https://github.com/danieltodor/rpi-gpio-devices',
classifiers = classifiers,
packages = ['rpi_gpio_devices'],
package_dir = {'rpi_gpio_devices': 'src'},
install_requires = ['RPi.GPIO==0.7.1']
)