forked from YelpArchive/python-gearman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (24 loc) · 886 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (24 loc) · 886 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
from gearman import __version__ as version
setup(
name = 'gearman',
version = version,
author = 'Jonathan Spalink',
author_email = 'jspalink@info.com',
description = 'Gearman API - Client, worker, and admin client interfaces',
long_description=open('README.txt').read(),
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 :: 3.1',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)