-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
48 lines (45 loc) · 1.22 KB
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
alembic= "~=1.12.0"
babel = "~=2.12.1"
certifi = "~=2023.7.22"
clldutils = "~=3.19.0"
openpyxl = "~=3.1.2"
plaster_pastedeploy = "~=1.0"
pyramid = "~=2.0"
pyramid_debugtoolbar = "~=4.9"
pyramid_jinja2 = "~=2.10"
pyramid_retry = "~=2.1.1"
pyramid_tm = "~=2.5"
pyyaml = "~=6.0"
setuptools = "~=68.2.2"
sqlalchemy = "~=2.0.20"
sqlalchemy-schemadisplay = "~=1.3"
toml = "~=0.10.2"
transaction = "~=3.1.0"
waitress = "~=2.1.2"
zope = {sqlalchemy = "~1.6"}
# If `editable` is set to `false`, pipenv gives a warning saying that in newer versions of pip
# local packages will be built in-place without first copying to a temporary directory.
# This is an equivalent of `editable=true`, so having `editable=true` not only is convenient
# but also conforms with newer pip regulations.
"langworld_db_data" = {path = "./langworld_db_data", editable = true}
"langworld_db_pyramid" = {path = ".", editable = true}
[dev-packages]
cookiecutter = "~=2.6.0"
graphviz = "~=0.20.3"
icecream = "~=2.1.3"
mypy = "~=1.12"
pydot = "~=3.0.2"
pytest = "~=8.3.3"
pytest-cov = "~=5.0.0"
WebTest = "~=3.0.0"
black = "*"
isort = "*"
ruff = "*"
pre-commit = "*"
[requires]
python_version = "3.9"