-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (48 loc) · 1.88 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), "r", encoding="utf-8") as ffile:
README = ffile.read()
setup(
name="django-dbbackup-s3",
python_requires=">=3.7.0",
version="0.6.3",
author="Jirka Schaefer",
author_email="[email protected]",
packages=["storage_sync", "storage_sync.management.commands"],
include_package_data=True,
url="https://github.com/patroqueeet/django-dbbackup-s3",
license="Apach 2.0",
install_requires=[
"Django>=3.2",
"django-storages[boto3,dropbox]>=1.13.1",
"django-environ>=0.9.0",
"django-dbbackup>=4.0.2",
],
extras_require={
"tests": ["pytest>=3.7.0", "ipython", "pytest-django", "pylint"],
},
description="Backup S3 files to tar.gz in target storage",
long_description=README,
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
)