forked from Intsights/sergeant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 980 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (34 loc) · 980 Bytes
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
import setuptools
setuptools.setup(
name='sergeant',
version='0.12.2',
author='Gal Ben David',
author_email='gal@intsights.com',
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',
],
keywords='tasks worker queue redis async',
python_requires='>=3.7',
zip_safe=False,
install_requires=[
'hiredis',
'msgpack',
'orjson',
'psutil',
'pymongo',
'redis',
],
tests_require=[],
package_data={},
packages=setuptools.find_packages(),
)