-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (48 loc) · 1.85 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
50
51
52
53
from os.path import dirname, join
from setuptools import find_packages, setup
def read(*names, **kwargs):
with open(
join(dirname(__file__), *names), encoding=kwargs.get("encoding", "utf8")
) as openfile:
return openfile.read()
setup(
name="nats-multi-request",
packages=find_packages("src"),
package_dir={"": "src"},
version=read("VERSION"),
license="MIT License",
description="Python function to return one or multiple responses to a "
"NATS request as soon as possible. ",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="Hugo O. Rivera",
author_email="hugo.rivera@powerflex.com",
url="https://github.com/edf-re/nats_multi_request_py",
include_package_data=True,
zip_safe=False,
classifiers=[
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Utilities",
],
project_urls={
"Issue Tracker": "https://github.com/edf-re/nats_multi_request_py/issues",
},
keywords=["NATS", "NATS request", "respond as soon as possible", "asap response"],
python_requires=">2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
install_requires=["nats-py>=2.2.0"],
extras_require={},
setup_requires=[],
entry_points={},
)