forked from Intsights/sergeant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.11 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
import setuptools
setuptools.setup(
name='sergeant',
version='0.17.1',
author='Gal Ben David',
author_email='[email protected]',
url='https://github.com/Intsights/sergeant',
project_urls={
'Source': 'https://github.com/Intsights/sergeant',
},
license='MIT',
description='Fast, Safe & Simple Asynchronous Task Queues Written In Pure Python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='tasks worker queue redis async',
python_requires='>=3.7',
zip_safe=False,
install_requires=[
'hiredis==1.*',
'msgpack==1.*',
'orjson==3.*',
'psutil==5.*',
'pymongo==3.*',
'redis==3.*',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
],
package_data={},
packages=setuptools.find_packages(),
)