-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (40 loc) · 1.44 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
"""
Pip.Services Commons
--------------------
Pip.Services is an open-source library of basic microservices.
pip_services3_commons package provides basic abstractions portable across variety of languages.
Links
`````
* `website <http://github.com/pip-services/pip-services>`
* `development version <http://github.com/pip-services-python/pip-services-commons-python>`
"""
from setuptools import setup
from setuptools import find_packages
setup(
name='pip_services3_commons',
version='3.0.0',
url='http://github.com/pip-services3-python/pip-services3-commons-python',
license='MIT',
description='Basic portable abstractions for Pip.Services in Python',
author='Conceptual Vision Consulting LLC',
author_email='[email protected]',
long_description=__doc__,
packages=find_packages(exclude=['config', 'data', 'test']),
include_package_data=True,
zip_safe=True,
platforms='any',
install_requires=[
'iso8601', 'PyYAML', 'pystache'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)