-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (28 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='DataMesh',
version='0.1.2',
author='Giorgi Gachechiladze',
author_email='[email protected]',
description='A collection of tools for Data Mesh architectural approach.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/georgegach/DataMesh',
packages=find_packages(),
include_package_data=True,
install_requires=[
'jsonschema',
'pyyaml'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
entry_points={
'console_scripts': [
'data-contract-validation=datamesh.contract.validator:main',
],
},
python_requires='>=3.6',
)