Skip to content

Commit

Permalink
Release 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zaturox committed May 21, 2018
1 parent 3612792 commit ab87728
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
1 change: 1 addition & 0 deletions glin/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions glin/zmq/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

30 changes: 15 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
from setuptools import setup
from setuptools import setup, find_packages


def readme():
with open('README.rst') as f:
return f.read()

setup(name='glin',
version='0.0.3',
version='0.0.4',
long_description=readme(),
description='Manages animations for LED stripes',
url='http://github.com/zaturox/glin',
author='zaturox',
author_email='[email protected]',
author_email='[email protected]',
license='LGPL',
packages=['glin'],
packages=find_packages(),
include_package_data=True,
scripts=['bin/glin'],
entry_points={
"glin.animation": [
"Nova = glin.animations:NovaAnimation",
"StaticColor = glin.animations:StaticColorAnimation",
],
"glin.hwbackend": [
"udp = glin.hardware:UDP",
],
"glin.animation": [
"Nova = glin.animations:NovaAnimation",
"StaticColor = glin.animations:StaticColorAnimation",
],
"glin.hwbackend": [
"udp = glin.hardware:UDP",
],
},
install_requires=[
'numpy',
'pyzmq',
'setuptools',
'numpy',
'pyzmq',
'setuptools',
],
zip_safe=False)
zip_safe=False)

0 comments on commit ab87728

Please sign in to comment.