forked from jonasvp/django-beanstalkd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 975 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
31
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
version = '1.0.1'
setup(
name='django-beanstalkd',
version=version,
description='A convenience wrapper for beanstalkd clients and workers in Django using the beanstalkc library for Python',
long_description=open('README.md').read(),
author='Kimi Huang',
author_email='kimi.huang@brightcells.com',
url='https://github.com/beanstalkdclub/django-beanstalkd',
license='MPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['pyyaml', 'beanstalkc', 'django_six'],
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',
]
)