-
Notifications
You must be signed in to change notification settings - Fork 53
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
Rob Berwick
committed
Mar 28, 2013
1 parent
793befa
commit 3c893b0
Showing
4 changed files
with
38 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# file GENERATED by distutils, do NOT edit | ||
CHANGES.txt | ||
LICENSE.txt | ||
README.rst | ||
setup.py | ||
bin/blinkstick-connect.py | ||
bin/blinkstick-cpu.py | ||
bin/blinkstick-find.py | ||
bin/blinkstick-info.py | ||
bin/blinkstick-infoblock.py | ||
bin/blinkstick-off.py | ||
bin/blinkstick-random.py | ||
blinkstick/__init__.py | ||
blinkstick/blinkstick.py |
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,2 +1,4 @@ | ||
include *.txt | ||
recursive-include docs *.txt | ||
include LICENSE.txt | ||
include README.rst | ||
recursive-include bin *.py |
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,11 +1,17 @@ | ||
from distutils.core import setup | ||
#!/usr/bin/env python | ||
import os | ||
from setuptools import setup, find_packages | ||
|
||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
setup( | ||
name='BlinkStick', | ||
version='0.1.0', | ||
author='Arvydas Juskevicius', | ||
author_email='[email protected]', | ||
packages=['blinkstick'], | ||
packages=find_packages(), | ||
scripts=["bin/blinkstick-connect.py", | ||
"bin/blinkstick-cpu.py", | ||
"bin/blinkstick-find.py", | ||
|
@@ -16,9 +22,9 @@ | |
url='http://pypi.python.org/pypi/BlinkStick/', | ||
license='LICENSE.txt', | ||
description='Python package to control BlinkStick USB devices.', | ||
long_description=open('README.rst').read(), | ||
long_description=read('README.rst'), | ||
install_requires=[ | ||
"grapefruit", | ||
"pyusb" | ||
], | ||
) | ||
], | ||
) |