forked from josiahmwalton/python3-gearman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
set.py
31 lines (27 loc) · 958 Bytes
/
set.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
#!/usr/bin/env python
from setuptools import setup
from python3_gearman import __version__ as version
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='python3_gearman',
version=version,
description=(
'Python 3 Gearman API - Client, worker, and admin client interfaces'
),
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/josiahmwalton/python3-gearman',
packages=['python3_gearman'],
python_requires='>=3',
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 :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)