-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (42 loc) · 1.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
import os
import sys
import setuptools
ROOT = os.path.dirname(__file__)
if sys.version_info < (3, 7, 0):
sys.exit("Python 3.7.0 is the minimum required version")
with open(os.path.join(ROOT, "README.md")) as f:
long_description = f.read()
with open(os.path.join(ROOT, "requirements.txt")) as f:
requirements = f.readlines()
with open(os.path.join(ROOT, "test-requirements.txt")) as f:
test_requirements = f.readlines()
setuptools.setup(
name="rabbitmq-decorator",
setup_requires=["vcversioner"],
vcversioner={"vcs_args": ["git", "describe", "--tags", "--long"]},
description="Easily send and receive messages to and from RabbitMQ message broker",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/eliorerz/rabbitmq-decorator",
author="Elior Erez",
author_email="[email protected]",
license="MIT",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
install_requires=requirements,
tests_require=requirements + test_requirements,
include_package_data=True,
python_requires=">=3.7.0",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Testing",
],
)