-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.07 KB
/
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
32
33
import setuptools
from os.path import join, dirname
import beanstalkd
setuptools.setup(
name="",
version=beanstalkd.__version__,
packages=["beanstalkd"],
include_package_data=True, # declarations in MANIFEST.in
install_requires=open(join(dirname(__file__), 'requirements.txt')).readlines(),
tests_require=[
'django<1.8',
],
test_suite='runtests.runtests',
author="baitcode",
author_email="[email protected]",
url="http://github.com/batiyiv/django-beanstalkd",
license="Apache 2.0",
description="Beanstalkd monitoring and management solution.",
long_description=open(join(dirname(__file__), "README.rst")).read(),
keywords="django beanstalkd monitoring queue job scheduling admin",
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)