-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (29 loc) · 959 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
'pika==1.2.0',
'aio-pika==6.8.0',
'requests==2.25.1'
]
setuptools.setup(
name="rctiplus-rabbitmq-python-sdk",
version="1.2.1",
license="GPLv3",
author="RCTI+",
author_email="[email protected]",
url=None,
description="A library from RCTI+ to handle RabbitMQ tasks (connect, send, receive, etc) in Python.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=requirements,
keywords=['python', 'rabbitmq', 'rctiplus', 'rcti+', 'sdk'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.7.3',
include_package_data=True
)