-
Notifications
You must be signed in to change notification settings - Fork 115
/
setup.py
executable file
·32 lines (28 loc) · 997 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
32
#!/usr/bin/env python
import os
from setuptools import setup
from beanstalkc import __version__ as src_version
PKG_VERSION = os.environ.get('BEANSTALKC_PKG_VERSION', src_version)
setup(
name='beanstalkc',
version=PKG_VERSION,
py_modules=['beanstalkc'],
author='Andreas Bolka',
author_email='[email protected]',
description='A simple beanstalkd client library',
long_description='''
beanstalkc is a simple beanstalkd client library for Python. `beanstalkd
<http://kr.github.com/beanstalkd/>`_ is a fast, distributed, in-memory
workqueue service.
''',
url='https://github.com/earl/beanstalkc',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)