-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.cfg
38 lines (36 loc) · 863 Bytes
/
setup.cfg
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
# -*- coding: utf-8 -*-
[metadata]
name = gpio
version = 1.0.0
author = Garrett Berg, Phil Howard
author_email = phil@pimoroni.com
description = gpio access via the standard linux sysfs interface
long_description = file: README.md
long_description_content_type = text/markdown
keywords = gpio sysfs linux
license = MIT
license_files = LICENSE.txt
project_urls =
GitHub = https://github.com/vitiral/gpio
classifiers =
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
[options]
python_requires = >= 2.7
packages = gpio
install_requires =
[flake8]
exclude =
.tox,
.eggs,
.git,
__pycache__,
build,
dist
ignore =
E501