-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
51 lines (48 loc) · 1.54 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
import setuptools
import sys
from db_sync_tool import info
if sys.version_info < (3, 5):
sys.exit('db_sync_tool requires Python 3.5+ to run')
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='db_sync_tool-kmi',
version=info.__version__,
author='Konrad Michalik',
author_email='[email protected]',
description='Synchronize a database from and to host systems.',
long_description=long_description,
long_description_content_type='text/markdown',
url=info.__homepage__,
license='MIT',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Topic :: Database',
'Intended Audience :: Developers'
],
python_requires='>=3.5',
install_requires=[
"paramiko>=2.11",
"future-fstrings>=1.2",
"pyyaml>=6.0",
"jsonschema>=4.2.1",
"requests>=2.26.0",
"semantic_version>=2.8.5",
"yaspin>=2.1"
],
entry_points={
'console_scripts': [
'db_sync_tool = db_sync_tool.__main__:main'
]
},
)