forked from vitiral/gpio
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Garrett Berg
committed
Mar 10, 2015
1 parent
c66cc1e
commit 6ed711e
Showing
4 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
__version__ = '0.0.3' | ||
|
||
import functools | ||
import threading | ||
import os | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file = README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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': 'garrett@cloudformdesign.com', | ||
'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/cloudtb", | ||
'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) |