-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (32 loc) · 1.02 KB
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
"""
Setup script for python_sql_backup package.
"""
from setuptools import setup, find_packages
def read_requirements():
with open('requirements.txt') as f:
return f.read().splitlines()
setup(
name="python_sql_backup",
version="1.0.0",
description="MySQL backup and recovery solution using XtraBackup",
author="Python SQL Backup Team",
packages=find_packages(),
install_requires=read_requirements(),
entry_points={
'console_scripts': [
'python-sql-backup=python_sql_backup.cli.commands:cli',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Systems Administration",
],
python_requires=">=3.10",
)