-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
32 lines (31 loc) · 1000 Bytes
/
setup.cfg
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
[metadata]
name = django_archive
version = attr: django_archive.__version__
description = Management command for creating compressed archives of DB tables and uploaded media
author = Nathan Osman
author_email = [email protected]
url = https://github.com/nathan-osman/django-archive
license = MIT
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.0
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
[options]
python_requires = >=3.6
packages =
django_archive
django_archive.archivers
django_archive.management
django_archive.management.commands
django_archive.util
install_requires =
Django >= 3.0