-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (23 loc) · 938 Bytes
/
pyproject.toml
File metadata and controls
28 lines (23 loc) · 938 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
virtualenvs.create = true
virtualenvs.options.system-site-packages = true
[tool.poetry]
name = "map_server"
version = "0.0.1"
description = "geoserver data_dir generation in support of gtfsdb transit layers"
authors = ["Frank Purcell <fxpurcell@gmail.com>"]
license = "Mozella 2.x"
readme = "README.md"
packages = [{include = "ott/map_server"}]
[tool.poetry.dependencies]
python = "^3.6"
pystache = "*"
"ott.utils" = {git = "https://github.com/OpenTransitTools/utils.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]
gtfs_feeds = "ott.convert.csv2json.gtfs:gtfs_feed_parser"
generate-geoserver-config = "ott.map_server.geoserver_config.transit_config:generate_geoserver_config"
get-agencies = "ott.map_server.geoserver_config.transit_config:get_agency_list"