forked from openfun/richie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
125 lines (118 loc) · 2.68 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
122
123
124
125
;;
;; Richie package
;;
[metadata]
name = richie
version = 2.16.0
description = A CMS to build learning portals for open education
long_description = file:README.md
long_description_content_type = text/markdown
author = Open FUN (France Universite Numerique)
author_email = [email protected]
url = https://github.com/openfun/richie
license = MIT
keywords = Django, Django-CMS, Open edX
classifiers =
Development Status :: 4 - Beta
Framework :: Django
Framework :: Django :: 1.11
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
[options]
include_package_data = True
# When you install a new package, if you do not want our renovate bot checks
# updates for it, please add the exact name of the package within
# `matchPackageNames` (in the "ignored python dependencies" group) within
# renovate.json file at the root of this repository
install_requires =
arrow
Django<4
djangocms-file
djangocms-googlemap
djangocms-link
djangocms-picture
djangocms-text-ckeditor
djangocms-video
djangorestframework
django-autocomplete-light==3.9.4
django-cms>=3.11.0
django-parler>=2.3
django-redis>=4.11.0
django-treebeard
dj-pagination
easy_thumbnails[svg]>=2.8
elasticsearch>=6.0.0,<7.0.0
exrex==0.10.5
oauthlib==3.2.1
requests==2.28.1
package_dir =
=src
packages = find:
zip_safe = True
[options.extras_require]
dev =
bandit==1.7.4
black==22.8.0
pyRdfa3==3.5.3
cssselect==1.1.0
factory-boy==3.2.1
flake8==5.0.4
htmlmin==0.1.12
ipdb==0.13.9
ipython==8.5.0
isort==5.10.1
lxml==4.9.1
msgpack==1.0.4
mysqlclient==2.1.1
pylint==2.15.3
pylint-django==2.5.3
pytest==7.1.3
pytest-cov==3.0.0
pytest-django==4.5.2
responses==0.21.0
ci =
twine==4.0.1
sandbox =
django-configurations==2.4
dockerflow==2022.8.0
factory-boy==3.2.1
gunicorn==20.1.0
psycopg2-binary==2.9.3
sentry-sdk==1.9.8
[options.packages.find]
where = src
[wheel]
universal = 1
;;
;; Third-party packages configuration
;;
[flake8]
max-line-length = 99
exclude =
.git,
.venv,
build,
venv,
__pycache__,
node_modules,
*/migrations/*
[isort]
known_django=django
known_richie=richie
include_trailing_comma=True
line_length=88
multi_line_output=3
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,RICHIE,FIRSTPARTY,LOCALFOLDER
skip_glob=src/frontend/node_modules/**/*,venv
[tool:pytest]
addopts = -v --cov-report term-missing
python_files =
test_*.py
tests.py
testpaths =
tests
filterwarnings =
ignore:::(?!(tests|richie))