Skip to content

Commit

Permalink
PyPi Package 0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Berwick committed Mar 28, 2013
1 parent 793befa commit 3c893b0
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 7 deletions.
14 changes: 14 additions & 0 deletions MANIFEST
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
4 changes: 3 additions & 1 deletion MANIFEST.in
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
11 changes: 10 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,16 @@ Install all required packages with pip:

::

[sudo] pip install grapefruit pyusb psutil websocket-client
[sudo] pip install blinkstick

::

If you would like to run the example scripts, you may also need to install
the extra dependencies

::

[sudo] pip install psutil websocket-client

If websocket-client fails to install, please make sure you run the
following command:
Expand Down
16 changes: 11 additions & 5 deletions setup.py
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",
Expand All @@ -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"
],
)
],
)

0 comments on commit 3c893b0

Please sign in to comment.