forked from openfun/ralph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
120 lines (112 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
;;
;; Ralph package
;;
[metadata]
name = ralph-malph
version = 2.1.0
description = A learning logs processor to feed your LRS
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://openfun.github.io/ralph/
license = MIT
keywords = Open edX, Analytics, xAPI, LRS
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
[options]
include_package_data = True
install_requires =
bcrypt==3.2.2
click==8.1.3
click-option-group==0.5.3
elasticsearch==8.3.3
fastapi==0.79.1
gunicorn==20.1.0
; We temporary pin `h11` to avoid pip downloading the latest version to solve a
; dependency conflict caused by `httpx` which requires httpcore>=0.15.0,<0.16.0 and
; `httpcore` depends on h11>=0.11,<0.13.
; See: https://github.com/encode/httpx/issues/2244
h11==0.12.0
httpx==0.23.0
Jinja2==3.1.2
langcodes==3.3.0
ovh==1.0.0
pydantic[dotenv,email]==1.9.2
pymongo[srv]==4.2.0
pyparsing==3.0.9
python-keystoneclient==5.0.0
python-swiftclient==4.0.1
requests==2.28.1
rfc3987==1.3.8
sentry_sdk==1.9.5
uvicorn[standard]==0.18.2
watchgod==0.8.2
websockets==10.3
package_dir =
=src
packages = find:
zip_safe = True
python_requires = >= 3.9
[options.extras_require]
dev =
bandit==1.7.4
black==22.6.0
factory-boy==3.2.1
Faker==14.1.0
flake8==5.0.4
hypothesis==6.54.4
ipdb==0.13.9
ipython==8.4.0
isort==5.10.1
logging-gelf==0.0.26
memory-profiler==0.60.0
mkdocs==1.3.1
mkdocs-click==0.8.0
mkdocs-material==8.4.1
mkdocstrings[python-legacy]==0.19.0
pyfakefs==4.5.6
pylint==2.14.5
pytest==7.1.2
pytest-asyncio==0.19.0
pytest-cov==3.0.0
ci =
twine==4.0.1
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
ralph = ralph.__main__:cli
[wheel]
universal = 1
;;
;; Third-party packages configuration
;;
[flake8]
max-line-length = 88
extend-ignore = E203
exclude =
.git,
.venv,
build,
venv,
__pycache__,
node_modules,
*/migrations/*
[isort]
known_ralph=ralph
sections=FUTURE,STDLIB,THIRDPARTY,RALPH,FIRSTPARTY,LOCALFOLDER
skip_glob=venv
profile=black
[tool:pytest]
addopts = -v --cov-report term-missing --cov-config=.coveragerc --cov=src/ralph
python_files =
test_*.py
tests.py
testpaths =
tests