-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
121 lines (112 loc) · 2.62 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
110
111
112
113
114
115
116
117
118
119
120
121
;;
;; Django Blog Lotus package
;;
[metadata]
name = django-blog-lotus
version = 0.9.1
description = A weblog application with Django.
long_description = file:README.rst
long_description_content_type = text/x-rst
author = Emencia
author_email = support@emencia.com
url = https://github.com/emencia/django-blog-lotus
project_urls =
Source Code = https://github.com/emencia/django-blog-lotus
Issue Tracker = https://github.com/emencia/django-blog-lotus/issues
Changelog = https://django-blog-lotus.readthedocs.io/en/latest/history.html
Documentation = https://django-blog-lotus.readthedocs.io/
license = MIT
keywords = Python Django Blog
classifiers =
Development Status :: 5 - Production/Stable
Operating System :: OS Independent
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Intended Audience :: Developers
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries :: Python Modules
[options]
python_requires = >=3.9
include_package_data = True
install_requires =
django>=3.2,<5.0
django-ckeditor>=6.0.0
django-taggit<5.0.0
django-autocomplete-light>=3.9.7
django-smart-media>=0.2.2
django-treebeard>=4.3,!=4.5
packages = find:
zip_safe = True
[options.extras_require]
api =
djangorestframework>=3.14.0
breadcrumbs =
django-view-breadcrumbs>=2.2.4
dev =
pillow>=8.0.0
pytest>=7.0
pytest-django>=4.5.2
factory-boy>=3.3.0
pyquery>=2.0.0
freezegun>=1.2.0
diskette>=0.3.6
quality =
flake8>=6.0.0
tox>=4.11.0
doc =
sphinx>=8.0.2
furo>=2024.8.6
sphinx-copybutton>=0.5.2
doc-live =
livereload>=2.6.0
release =
twine>=5.0.0
sandbox =
drf-redesign>=0.4.0
[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 = -v --tb=long
python_files =
*.py
testpaths =
tests
[tox:tox]
minversion = 3.4.0
envlist = py{39,310}-django{32,42}-{no_api,api}
[testenv]
deps =
django32: Django>=3.2,<3.3
django42: Django>=4.2,<5.0
api: djangorestframework>=3.14.0
commands =
pip install -e .[breadcrumbs,dev]
pytest -vv tests