-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.25 KB
/
setup.py
File metadata and controls
40 lines (34 loc) · 1.25 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
37
38
39
40
"""Backup simplified.
backwork is a toolkit that simplifies the process of backing up databases. It
handles the backup process itself as well as upload and error notification.
"""
from os import path
from setuptools import find_packages, setup
HERE = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(HERE, "README.md")) as f:
LONG_DESCRIPTION = f.read()
setup(
name="backwork",
version="0.3.1",
description="Backup made easy.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/ibm/backwork",
license="Apache 2",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only",
"License :: OSI Approved :: Apache Software License",
"Topic :: Database",
"Topic :: System :: Archiving :: Backup",
"Topic :: Utilities",
],
packages=find_packages(),
entry_points={"console_scripts": ["backwork=backwork:main"]},
)