forked from binarymatt/pyres
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (29 loc) · 1001 Bytes
/
setup.py
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
from setuptools import setup, find_packages
version='0.5.0'
setup(
name='pyres',
version=version,
description='Python resque clone',
author='Matt George',
author_email='[email protected]',
maintainer='Matt George',
license='MIT',
url='http://github.com/binarydud/pyres',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
download_url='http://cloud.github.com/downloads/binarydud/pyres/pyres-v%s.tar.gz' % version,
include_package_data=True,
scripts=['scripts/pyres_worker', 'scripts/pyres_web'],
install_requires=[
'simplejson>=2.0.9',
'itty>=0.6.2',
'redis>=0.6.0',
'pystache>=0.1.0'
],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
)