forked from openfun/richie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
121 lines (114 loc) · 2.59 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
;;
;; Richie package
;;
[metadata]
name = richie
version = 2.7.1
description = A FUN portal for Open edX
long_description = file:README.md
long_description_content_type = text/markdown
author = Open FUN (France Universite Numerique)
author_email = fun.dev@fun-mooc.fr
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
dj-pagination
django-cms>=3.9.0
django-parler>=2.0.1
djangocms-file
djangocms-googlemap
djangocms-link
djangocms-picture
djangocms-text-ckeditor
djangocms-video
djangorestframework
elasticsearch>=6.0.0,<7.0.0
social-auth-core[openidconnect]==4.1.0
social-auth-app-django==3.1.0
django-redis>=4.11.0
django-treebeard
exrex==0.10.5
package_dir =
=src
packages = find:
zip_safe = True
[options.extras_require]
dev =
bandit==1.7.0
black==20.8b1
pyRdfa3==3.5.3
factory-boy==3.2.0
flake8==3.9.2
htmlmin==0.1.12
ipdb==0.13.9
ipython==7.27.0
isort==5.9.3
msgpack==1.0.2
mysqlclient==2.0.3
pylint==2.10.2
pylint-django==2.4.4
pytest==6.2.5
pytest-cov==2.12.1
pytest-django==4.4.0
responses==0.14.0
ci =
twine==3.4.2
sandbox =
django-configurations==2.2
dockerflow==2021.7.0
factory-boy==3.2.0
gunicorn==20.1.0
psycopg2-binary==2.9.1
sentry-sdk==1.3.1
[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))