-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (36 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
45 lines (36 loc) · 1.52 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
virtualenvs.create = true
virtualenvs.options.system-site-packages = true
[tool.poetry]
name = "gtfsdb_ext"
version = "0.0.1"
description = "gtfsdb postprocess tools"
authors = ["Frank Purcell <fxpurcell@gmail.com>"]
license = "Mozella 2.x"
readme = "README.md"
packages = [{include = "ott/gtfsdb/ext"}]
[tool.poetry.dependencies]
python = "^3.9"
mako = "^1.1.6"
urllib3 = "^2.6.2"
psycopg2-binary = "^2.9.1"
#"ott.utils" = { path = "../utils/", develop = true }
#gtfsdb = { path = "../gtfsdb/", develop = true }
#convert = { path = "../convert/", develop = true }
"ott.utils" = {git = "https://github.com/OpenTransitTools/utils.git", branch = "rtp"}
gtfsdb = {git = "https://github.com/OpenTransitTools/gtfsdb.git", branch = "rtp"}
convert = {git = "https://github.com/OpenTransitTools/convert.git"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
system-site-packages = true
[tool.poetry.scripts]
convert-x = "ott.gtfsdb.ext.utils:x"
gtfs_feeds = "ott.convert.csv2json.gtfs:gtfs_feed_parser"
gtfsdb-load = "gtfsdb.scripts:gtfsdb_load"
gtfsdb-current-load = "gtfsdb.scripts:current_tables_cmdline"
update-shared-stops = "ott.gtfsdb.ext.shared_stops.process:update_shared_stops"
echo-shared-stops = "ott.gtfsdb.ext.shared_stops.report:echo_shared_stops"
shared-stops-report = "ott.gtfsdb.ext.shared_stops.report:create_report"
shared-stops-csv = "ott.gtfsdb.ext.shared_stops.report:create_csv"
pelias-stops = "ott.gtfsdb.ext.pelias.export.stops:main"
pelias-pr = "ott.gtfsdb.ext.pelias.export.park_ride:main"