-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.26 KB
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
[tool.poetry]
name = "pelias.adapter"
version = "0.1.0"
description = "Open Transit Tools - Web API / Controller"
authors = ["Frank Purcell <fxpurcell@gmail.com>"]
homepage = "http://opentransittools.com"
license = "Mozella 2.x"
readme = "README.md"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application"
]
packages = [{include = "pelias"}]
[tool.poetry.plugins."paste.app_factory"]
main = "pelias.adapter.pyramid.app:main"
[tool.poetry.dependencies]
python = "^3.9"
urllib3 = "1.26.6" # older mapgeo servers need urllib3 v1.x (lower than v2 ala OpenSSL 1.1.1+), mapgeo has 'OpenSSL 1.0.2k-fips 26 Jan 2017'
pyramid = "^2.0"
pyramid_tm = "*"
pyramid_exclog = "*"
waitress = "*"
requests = "*"
#"ott.utils" = { path = "../utils/", develop = true }
"ott.utils" = {git = "https://github.com/OpenTransitTools/utils.git", branch = "rtp"}
[tool.poetry.group.test.dependencies]
# poetry run pytest -v -s
pytest-randomly = "^3.15.0"
pytest = "^8.2.0"
[tool.poetry.scripts]
stress_test = "pelias.adapter.tests.stress:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
system-site-packages = true