-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 816 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 816 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='jasyncq',
version='1.1.2',
description='High reliability asynchronous queue using mysql(lock)',
long_description=long_description,
long_description_content_type="text/markdown",
author='pjongy',
author_email='hi.pjongy@gmail.com',
url='https://github.com/pjongy/jasyncq',
install_requires=[
'pydantic==1.7.3',
'aiomysql>=0.0.20',
'PyPika>=0.37.6',
],
packages=find_packages(),
keywords=['message queue', 'queue', 'distributed', 'microservice'],
python_requires='>=3.7',
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
)