This commit is contained in:
Felipe Martin 2017-05-04 12:34:27 +02:00
parent 6c3c8ae24b
commit db61a8006c
Signed by: fmartingr
GPG Key ID: 716BC147715E716F
3 changed files with 52 additions and 6 deletions

View File

@ -4,12 +4,6 @@ Helper interface and CLI to interact with [luxafor](https://luxafor.com) product
## Install
```
pip3 install pyluxafor
```
or
```
git clone git@github.com:fmartingr/pyluxafor.git
cd pyluxafor

View File

@ -0,0 +1 @@
__version__ = '0.1.0'

51
setup.py Normal file
View File

@ -0,0 +1,51 @@
#!/usr/bin/env python3
import os
import re
from setuptools import setup, find_packages
import sys
THIS_PATH = os.path.dirname(os.path.abspath(__file__))
README = open(os.path.join(THIS_PATH, 'README.md')).read()
def get_version(package):
"""
Return package version as listed in `__version__` in `init.py`.
"""
init_py = open(os.path.join(package, '__init__.py')).read()
return re.search(
"^__version__ = ['\"]([^'\"]+)['\"]",
init_py, re.MULTILINE).group(1)
if sys.argv[-1] == 'publish':
os.system("python setup.py sdist upload")
args = {'version': get_version('luxafor')}
print("You probably want to also tag the version now:")
print(" git tag -a %(version)s -m 'version %(version)s'" % args)
print(" git push --tags")
sys.exit()
scripts = {
"console_scripts": [
"luxa=luxafor.cli:cli",
]
}
setup(
name='luxafor',
version=get_version('luxafor'),
description='CLI and libraries to interact with luxafor USB leds',
long_description=README,
author='Felipe Martin',
author_email='me@fmartingr.com',
url='https://github.com/fmartingr/pyluxafor',
packages=find_packages(),
install_requires=(
"click>=6.0,<=6.7.99",
"pyusb==1.0.0",
),
entry_points=scripts,
classifiers=[],
)