forked from vitiral/gpio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.01 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from gpio import __version__
with open("README.md") as f:
ldesc = f.read()
config = {
'name': 'gpio',
'author': 'Garrett Berg',
'author_email': '[email protected]',
'version': __version__,
'py_modules': ['gpio'],
'license': 'MIT',
'install_requires': [
],
'extras_require': {
},
'description': "gpio access via the standard linux sysfs interface",
'long_description': ldesc,
'url': "https://github.com/cloudformdesign/gpio",
'classifiers': [
# 'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Libraries :: Python Modules',
]
}
setup(**config)