-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (31 loc) · 1.12 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
"""BorgAPI Package Setup"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="borgapi",
version="0.6.1",
author="Sean Slater",
author_email="seanslater@whatno.io",
description="Wrapper for borgbackup to easily use in code",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/spslater/borgapi",
license="MIT License",
packages=setuptools.find_packages(),
install_requires=["borgbackup[llfuse]==1.2.4", "python-dotenv>=1.0.0"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
"Topic :: System :: Archiving :: Backup",
],
keywords="borgbackup backup api",
python_requires=">=3.8",
)