forked from lmeulen/pyraptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 907 Bytes
/
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
34
35
36
37
38
39
[tool.poetry]
name = "pyraptor"
version = "1.3.10"
description = "Journey planner with RAPTOR algorithm"
authors = ["Leo van der Meulen, Thom Hopmans"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/lmeulen/pyraptor"
repository = "https://github.com/lmeulen/pyraptor"
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
loguru = "^0.6.0"
pandas = "^1.4.0"
joblib = "^1.0.1"
[tool.poetry.dev-dependencies]
coverage = "^5.5"
pylint = "^2.8.3"
pytest = "^6.2.4"
pytest-cov = "^2.10.1"
black = {version = "^20.8b1", allow-prereleases = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"pyraptor/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "master"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"