forked from sinnwerkstatt/runrestic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.41 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
from setuptools import setup, find_packages
from runrestic import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='runrestic',
version=__version__,
description='A wrapper script for Restic backup software that inits, creates, prunes and checks backups',
long_description=long_description,
long_description_content_type="text/markdown",
author='Andreas Nüßlein',
author_email='andreas@nuessle.in',
url='https://github.com/andreasnuesslein/runrestic',
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Topic :: Security :: Cryptography',
'Topic :: System :: Archiving :: Backup',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
),
packages=find_packages(),
entry_points={
'console_scripts': [
'runrestic = runrestic.commands.runrestic:main',
]
},
install_requires=(
'toml>=0.10.0',
'jsonschema>=3.0.0',
'setuptools',
),
include_package_data=True,
)