forked from jazzband/django-dbbackup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (61 loc) · 2.1 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_packages, setup
root_dir = Path(__file__).parent
src_dir = root_dir / "dbbackup"
with (src_dir / "VERSION").open() as f:
version = f.read().strip()
def get_requirements():
with (root_dir / "requirements.txt").open() as f:
return f.read().splitlines()
def get_test_requirements():
with (root_dir / "requirements" / "tests.txt").open() as f:
return f.read().splitlines()
setup(
name="django-dbbackup",
version=version,
description="Management commands to help backup and restore a project database and media.",
author="Archmonger",
author_email="[email protected]",
long_description=(root_dir / "README.rst").read_text(encoding="utf-8"),
python_requires=">=3.6",
install_requires=get_requirements(),
tests_require=get_test_requirements(),
include_package_data=True,
zip_safe=False,
license="BSD",
url="https://github.com/jazzband/django-dbbackup",
keywords=[
"django",
"database",
"media",
"backup",
"amazon",
"s3",
"dropbox",
],
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Environment :: Console",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: System :: Archiving",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Archiving :: Compression",
],
)