-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
26 lines (25 loc) · 926 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
from setuptools import setup
setup(
name='aiostalk',
version='1.3',
description='A Python 3 asyncio client for the beanstalkd work queue',
long_description=open('README.rst').read(),
author='Petri Savolainen',
author_email='[email protected]',
url='https://github.com/koodaamo/aiostalk',
license='MIT',
py_modules=['aiostalk'],
install_requires=['greenstalk>=2.0.2'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
)