forked from yandex/ch-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (57 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python3
# encoding: utf-8
"""
Package configuration for ch-backup.
"""
from setuptools import setup, find_packages
REQUIREMENTS = [
'requests',
'boto3',
'botocore',
'PyYAML',
'PyNaCl',
'click',
'tabulate',
'tenacity',
'pypeln'
]
with open('ch_backup/version.txt') as f:
VERSION = f.read().strip()
setup(
name='ch-backup',
version=VERSION,
description='Backup tool for ClickHouse DBMS.',
license='MIT',
url='https://github.com/yandex/ch-backup',
author='Yandex LLC',
author_email='[email protected]',
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Typing :: Typed",
],
platforms=['Linux', 'BSD', 'MacOS'],
packages=find_packages(exclude=['tests*']),
package_data={
'': ['version.txt'],
},
entry_points={'console_scripts': [
'ch-backup = ch_backup:main',
]},
install_requires=REQUIREMENTS,
)