-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (41 loc) · 1.24 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
import pathlib
from setuptools import find_packages, setup
version = __import__('aioworkers_tg').__version__
requirements = [
'aioworkers>=0.12.0',
'aiotg>=1.0.0',
]
test_requirements = [
'pytest',
'pytest-runner',
'pytest-mock',
'pytest-aioworkers',
'pytest-flake8',
'flake8-isort',
]
readme = pathlib.Path('README.rst').read_text()
setup(
name='aioworkers-tg',
version=version,
description='aioworkers plugin for Telegram',
long_description=readme,
author='Alexander Bogushov',
author_email='abogushov@gmail.com',
url='https://github.com/aioworkers/aioworkers-tg',
packages=[i for i in find_packages() if i.startswith('aioworkers_tg')],
include_package_data=True,
install_requires=requirements,
license='Apache Software License 2.0',
keywords='aioworkers aiotg telegram',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
test_suite='tests',
tests_require=test_requirements,
)