-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (47 loc) · 1.64 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
54
"""
Pip.Services Net
----------------------
Pip.Services is an open-source library of basic microservices.
pip_services3_messaging provides messaging components.
Links
`````
* `website <http://github.com/pip-services-python/pip-services-python-messaging>`_
* `development version <http://github.com/pip-services3-python/pip-services3-messaging-python>`
"""
from setuptools import find_packages
from setuptools import setup
try:
readme = open('readme.md').read()
except:
readme = __doc__
setup(
name='pip_services3_messaging',
version='3.1.2',
url='http://github.com/pip-services3-python/pip-services3-messaging-python',
license='MIT',
author='Conceptual Vision Consulting LLC',
author_email='[email protected]',
description='Messaging components for Pip.Services in Python',
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(exclude=['config', 'data', 'test']),
include_package_data=True,
zip_safe=True,
platforms='any',
install_requires=[
'pip-services3-commons >= 3.3.9, < 4.0',
'pip-services3-components >= 3.5.0, < 4.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)