-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 662 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 662 Bytes
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
from libqmpbackup import version
setup(
name="qmpbackup",
version=version.VERSION,
author="Michael Ablassmeier",
author_email="abi@grinser.de",
description=("Qemu incremental backup via QMP"),
license="GPL",
keywords="qemu incremental backup",
url="https://github.com/abbbi/qmpbackup",
packages=["libqmpbackup"],
long_description=read("README.md"),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
],
scripts=["qmpbackup", "qmprestore"],
)