-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
executable file
·49 lines (45 loc) · 1.18 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
#!/usr/bin/env python3
"""
Automatic backups for libvirt
See:
https://github.com/Anthony25/virt-backup
"""
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
setup(
name="virt-backup",
version="0.5.6",
description="Automatic backups for libvirt",
url="https://github.com/Anthony25/virt-backup",
author="Anthony25 <Anthony Ruhier>",
author_email="[email protected]",
license="Simplified BSD",
classifiers=[
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
],
keywords="libvirt",
packages=find_packages(exclude=["example", "tests"]),
install_requires=[
"appdirs",
"arrow",
"libvirt-python",
"lxml",
"packaging",
"PyYAML",
],
setup_requires=[
"pytest-runner",
],
tests_require=["pytest", "pytest-cov", "pytest-mock", "deepdiff"],
extras_require={
"zstd": ["zstandard"],
},
entry_points={
"console_scripts": [
"virt-backup = virt_backup.__main__:cli_run",
],
},
)