Skip to content

Commit

Permalink
Add manifest (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabfl committed Jul 12, 2017
1 parent 3ff1d14 commit 8908f52
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include LICENSE
include README.md
30 changes: 15 additions & 15 deletions setup.py
Expand Up @@ -6,22 +6,22 @@
except(IOError, ImportError):
long_description = open('README.md').read()

setup (
name = 'rpq',
version = '1.1',
description = 'Simple Redis work queue with added features (priorities, pop multiple items at once)',
long_description = long_description,
author = 'Gabriel Bordeaux',
author_email = 'pypi@gab.lc',
url = 'https://github.com/gabfl/redis-priority-queue',
license = 'MIT',
packages = ['rpq', 'rpq_src'],
package_dir = { 'rpq': 'clients/python/lib', 'rpq_src': 'src' },
setup(
name='rpq',
version='1.2',
description='Simple Redis work queue with added features (priorities, pop multiple items at once)',
long_description=long_description,
author='Gabriel Bordeaux',
author_email='pypi@gab.lc',
url='https://github.com/gabfl/redis-priority-queue',
license='MIT',
packages=['rpq', 'rpq_src'],
package_dir={'rpq': 'clients/python/lib', 'rpq_src': 'src'},
package_data={
'rpq_src': ['*.lua'],
},
install_requires = ['redis', 'argparse', 'prettytable'], # external dependencies
entry_points = {
'rpq_src': ['*.lua'],
},
install_requires=['redis', 'argparse', 'prettytable'], # external dependencies
entry_points={
'console_scripts': [
'rpq_monitor = rpq_src.queue_monitor:main',
],
Expand Down

0 comments on commit 8908f52

Please sign in to comment.