forked from Yelp/python-gearman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (27 loc) · 1 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
#!/usr/bin/env python
from setuptools import setup
from gearman import __version__ as version
setup(
name = 'gearman',
version = version,
author = 'Matthew Tai',
author_email = '[email protected]',
description = 'Gearman API - Client, worker, and admin client interfaces',
long_description=open('README.txt').read(),
url = 'http://github.com/Yelp/python-gearman/',
packages = ['gearman'],
license='Apache',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)