-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.09 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
31
32
33
34
35
#!/usr/bin/env -S python3 -B -u
from sys import version_info
from setuptools import setup, find_packages
if version_info < (3, 5, 3):
raise RuntimeError("aiopo requires Python 3.5.3+")
setup(
name="aio-btalk",
description='Async BeansTalk client (asyncio)',
version="0.9.0",
license='MIT',
author='Vitold Sedyshev',
author_email='[email protected]',
python_requires='>=3.5.3',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
],
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=["pyyaml"],
zip_safe=True,
)