-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (27 loc) · 1.08 KB
/
pyproject.toml
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
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 <[email protected]>"]
license = "Mozella 2.x"
readme = "README.md"
packages = [{include = "ott/gtfsdb/ext"}]
[tool.poetry.dependencies]
mako = "1.1.6"
python = "^3.6"
"ott.utils" = { path = "../utils/", develop = true }
gtfsdb = { path = "../gtfsdb/", develop = true }
#"ott.utils" = {git = "https://github.com/OpenTransitTools/utils.git", branch = "rtp"}
#gtfsdb = {git = "https://github.com/OpenTransitTools/gtfsdb.git", branch = "rtp"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
system-site-packages = true
[tool.poetry.scripts]
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"