-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
109 lines (99 loc) · 2.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
;;
;; emencia-request-form package
;;
[metadata]
name = emencia-request-form
version = 0.1.0
description = A simple contact form with some homemade antispam.
long_description = file:README.rst
long_description_content_type = text/x-rst
author = Emencia
author_email = [email protected]
url = https://github.com/emencia/emencia-request-form
project_urls =
Source Code = https://github.com/emencia/emencia-request-form
Issue Tracker = https://github.com/emencia/emencia-request-form/issues
Changelog = https://emencia-request-form.readthedocs.io/en/latest/history.html
Documentation = https://emencia-request-form.readthedocs.io/
license = MIT
keywords = Python,Django,django-cms
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Framework :: Django
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
[options]
include_package_data = True
install_requires =
Django>=4.0,<5.0
django-cms>=3.11.0,<4.0
djangocms-text-ckeditor>=5.0.1
django-phonenumber-field[phonenumbers]>=7.2.0,<8.0
django-simple-captcha>=0.5.20,<1.0
django-crispy-forms>=2.0
crispy-bootstrap5>=0.7
packages = find:
zip_safe = True
[options.extras_require]
dev =
pytest
pytest-django
factory-boy
pyquery
freezegun
quality =
flake8
tox
doc =
sphinx
furo==2023.7.26
sphinx-copybutton==0.5.2
doc-live =
livereload
release =
twine
[options.packages.find]
where = .
exclude=
data
docs
tests
sandbox
[wheel]
universal = 0
;;
;; Third-party packages configuration
;;
[flake8]
max-line-length = 88
exclude =
.git,
.venv,
build,
__pycache__
*/migrations/*
[tool:pytest]
DJANGO_SETTINGS_MODULE = sandbox.settings.tests
addopts = -vv
python_files =
*.py
testpaths =
tests
[tox:tox]
minversion = 3.4.0
envlist = py{310}-django{40,42}-cms{311}
[testenv]
deps =
django40: Django>=3.2,<4.1
django42: Django>=4.2,<5.0
cms311: django-cms>=3.11.0,<4.0
commands =
pip install -e .[dev]
pytest -vv tests