-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
87 lines (83 loc) · 2.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import setuptools
def _get_long_description():
with open('README.md') as readme_file:
return readme_file.read()
setuptools.setup(
name='arku',
use_scm_version=True,
description='Fast job queuing and RPC in Python with asyncio and Redis',
long_description=_get_long_description(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Clustering',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
],
project_urls={
'Documentation': 'https://arku.readthedocs.io',
'Code': 'https://github.com/targetaidev/arku',
'Issues': 'https://github.com/targetaidev/arku/issues',
},
python_requires='>=3.8,<4',
author='TargetAI Ltd.',
author_email='[email protected]',
url='https://github.com/targetaidev/arku',
license='MIT',
packages=['arku'],
package_data={'arku': ['py.typed']},
zip_safe=False,
entry_points={
'console_scripts': [
'arku=arku.cli:cli',
],
},
install_requires=[
'click>=6.7,<9',
'redis>=4.2,<6',
],
extras_require={
'dev': [
'flake8-quotes==3.3.2',
'flake8==6.1.0',
'isort==5.12.0',
'msgpack==1.0.5',
'watchgod>=0.8.2',
],
'doc': [
'docutils==0.14',
'pygments==2.7.4',
'sphinx==2.0.1',
'sphinxcontrib-websupport==1.1.0',
],
'test': [
'coverage==7.3.1',
'dirty-equals==0.6.0',
'pytest-aiohttp==0.3.0',
'pytest-cov==2.8.1',
'pytest-mock==3',
'pytest-sugar==0.9.2',
'pytest-timeout==1.3.3',
'pytest==5.3.5',
],
},
setup_requires=[
'setuptools_scm==3.3.3',
],
)