forked from pip-services3-python/pip-services3-data-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (40 loc) · 1.46 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 Data
------------------
Pip.Services is an open-source library of basic microservices.
pip_services3_data provides data processing and persistence components.
Links
`````
* `website <http://github.com/pip-services/pip-services>`_
* `development version <http://github.com/pip-services3-python/pip-services3-data-python>`
"""
from setuptools import setup
from setuptools import find_packages
setup(
name='pip_services3_data',
version='3.0.0',
url='http://github.com/pip-services3-python/pip-services3-data-python',
license='MIT',
author='Conceptual Vision Consulting LLC',
author_email='[email protected]',
description='Data processing and persistence components for Pip.Services in Python',
long_description=__doc__,
packages=find_packages(exclude=['config', 'data', 'test']),
include_package_data=True,
zip_safe=True,
platforms='any',
install_requires=[
'iso8601', 'PyYAML', 'pip_services3_commons', 'pip_services3_components'
],
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'
]
)