-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (37 loc) · 1.04 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
import os
import znappy
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="znappy",
version=znappy.__version__,
author=znappy.__author__,
author_email="[email protected]",
description=("Tool for creating and managing (distributed) ZFS snapshots"),
long_description=read('README.md'),
license="MIT",
keywords="python zfs snapshot backup",
url="https://github.com/eBayClassifiedsGroup/znappy",
packages=["znappy"] + [os.path.join("znappy", p) for p in find_packages("znappy")],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: GPL License",
],
install_requires=[
"fabric",
"python-consul",
"python-daemon",
"python-docopt",
"python-mysqldb",
"python-prettytable",
"python-pyyaml",
],
scripts=[
"bin/znappy",
"bin/zpyglass",
],
)