-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
27 lines (25 loc) · 919 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
from setuptools import setup, find_packages
setup(
name='django-beanstalkd',
version='0.2',
description='A convenience wrapper for beanstalkd clients and workers '
'in Django using the beanstalkc library for Python',
long_description=open('README.md').read(),
author='Jonas VP',
author_email='[email protected]',
url='http://github.com/jonasvp/django-beanstalkd',
license='MPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['pyyaml', 'beanstalkc'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)