-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 980 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 980 Bytes
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
[tool.poetry]
name = "convert"
version = "0.1.2"
description = "tools to convert files, ala csv -> json, yml -> json for localization of OTP-UI, etc..."
authors = ["Frank Purcell <fxpurcell@gmail.com>"]
license = "Mozella 2.x"
readme = "README.md"
packages = [{include = "ott/convert"}]
[tool.poetry.dependencies]
mako = "1.1.6"
mergedeep = "^1.3.4"
python = "^3.6"
PyYAML = "^6.0"
#"ott.utils" = { path = "../utils/", develop = true }
"ott.utils" = {git = "https://github.com/OpenTransitTools/utils.git", branch = "rtp"}
[tool.poetry.scripts]
csv2json = "ott.convert.csv2json.gtfs:csv2json"
gtfs_feeds = "ott.convert.csv2json.gtfs:gtfs_feed_parser"
agency_data = "ott.convert.csv2json.gtfs:cat_agency_data"
json2locs = "ott.convert.yaml2json.generate:json_to_localizations"
mockloc = "ott.convert.yaml2json.generate:mock_localization"
yml2json = "ott.convert.yaml2json.convert:yml_to_json"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"