-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1.17 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
[tool.poetry]
name = "log_parser"
version = "1.1.0"
description = "Open Transit Tools - parse server log files / OTP trip plan requests"
authors = ["Frank Purcell <fxpurcell@gmail.com>"]
license = "Mozilla 2.x"
readme = "README.md"
packages = [{include = "ott/log_parser"}]
[tool.poetry.dependencies]
python = "^3.9"
sqlalchemy = "*"
geoalchemy2 = "*"
psycopg2-binary = "*"
boltons = "*"
parse = "*"
python-dateutil = "*"
user-agents = "*"
haversine = "*"
"ott.utils" = {git = "https://github.com/OpenTransitTools/utils.git", branch="rtp"}
#"ott.utils" = { path = "../utils/", develop = true }
[tool.poetry.scripts]
test_load = "ott.log_parser.db.raw_log:main"
test_process = "ott.log_parser.db.processed_requests:main"
loader = "ott.log_parser.control.loader:main"
load_and_post_process = "ott.log_parser.control.loader:load_and_post_process"
publisher = "ott.log_parser.control.publisher:main"
parser = "ott.log_parser.control.parser:main"
parser_modsec_test = "ott.log_parser.control.parser_modsec:simple_test"
report = "ott.log_parser.control.reporter:main"
stats = "ott.log_parser.control.stats:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"