-
Notifications
You must be signed in to change notification settings - Fork 79
/
setup.cfg
59 lines (54 loc) · 1.65 KB
/
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
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
[metadata]
name = django-cryptography
version = attr: django_cryptography.__version__
url = https://github.com/georgemarshall/django-cryptography
author = George Marshall
author_email = [email protected]
description = Easily encrypt data in Django
long_description = file: README.rst
long_description_content_type = text/x-rst
license = BSD-3-Clause
license_files = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Topic :: Internet :: WWW/HTTP
Topic :: Security :: Cryptography
project_urls =
Bug Reports = https://github.com/georgemarshall/django-cryptography/issues
Source = https://github.com/georgemarshall/django-cryptography
Documentation = https://django-cryptography.readthedocs.io
[options]
packages = django_cryptography
python_requires = >=3.7
include_package_data = True
install_requires =
Django>=2.2
cryptography>=3.4.4
django-appconf
typing-extensions>=3.7.4.3
[options.extras_require]
mypy =
django-stubs
mypy
[options.package_data]
django_cryptography = py.typed
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 88
extend-ignore = E203