-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.36 KB
/
setup.py
File metadata and controls
48 lines (46 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
import os
version = '1.0'
setup(name='upfrontsystems.q',
version=version,
description="Lightweight queue on Redis.",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Programming Language :: Python",
],
keywords='',
author='Upfront Systems',
author_email='rijk@upfrontsystems.co.za',
url='git@github.com:upfrontsystems/q.git',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['upfrontsystems'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'pyga',
'redis',
'rq',
'rq-dashboard',
# -*- Extra requirements: -*-
],
tests_require=[
'mock_http',
],
extras_require={
'test': [
'mock_http',
],
},
entry_points="""
# -*- Entry points: -*-
[console_scripts]
processqueue=upfrontsystems.q.scripts.queueprocessor:processqueue
rqinfo=upfrontsystems.q.scripts.rqinfo:main
rqdashboard=rq_dashboard.scripts.rq_dashboard:main
""",
)