forked from sinnwerkstatt/runrestic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.39 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
# This file is only here for legacy reasons.
import os.path
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, "README.md")
setup(
long_description=open(readme_path, "r").read(),
long_description_content_type="text/markdown",
name="runrestic",
version="0.5.8",
description="A wrapper script for Restic backup software that inits, creates, prunes and checks backups",
python_requires=">=3.6.0",
project_urls={
"homepage": "https://github.com/sinnwerkstatt/runrestic",
"repository": "https://github.com/sinnwerkstatt/runrestic",
},
author="Andreas Nüßlein",
author_email="[email protected]",
license="GPL-3.0+",
keywords="backup",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"Topic :: Security :: Cryptography",
"Topic :: System :: Archiving :: Backup",
],
entry_points={
"console_scripts": ["runrestic = runrestic.runrestic.runrestic:runrestic"]
},
packages=[
"runrestic",
"runrestic.metrics",
"runrestic.restic",
"runrestic.runrestic",
],
package_data={"runrestic.runrestic": ["*.json"]},
install_requires=["jsonschema>=3.0", "toml>=0.10", "requests>=2.19"],
)