generated from bryanculbertson/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (57 loc) · 1.38 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "actransit-rt"
version = "0.1.0"
description = "Achive AC Transit Realtime Feeds"
authors = ["Bryan Culbertson <bryan.culbertson@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.12"
click = "8.1.7"
python-dotenv = "1.0.1"
functions-framework = "3.5.0"
flask = "3.0.2"
gtfs-realtime-bindings = "1.0.0"
requests = "2.31.0"
smart-open = {version = "6.4.0", extras = ["gcs"]}
cloudpathlib = {version = "0.17.0", extras = ["gs"]}
pendulum = "3.0.0"
pandas = "2.2.0"
orjson = "3.9.15"
pyarrow = "15.0.0"
[tool.poetry.group.dev.dependencies]
# Lint (versions duplicated in .pre-commit-config.yaml)
black = "23.12.1"
flake8 = "6.1.0"
isort = "5.13.2"
mypy = "1.8.0"
pre-commit = "3.6.0"
types-requests = "2.31.0.20231231"
# Test
tox = "4.13.0"
pytest = "8.0.1"
pytest-runner = "6.0.1"
pytest-cov = "4.1.0"
pytest-mock = "3.12.0"
pytest-xdist = {version = "3.5.0", extras = ["psutil"]}
pytest-randomly = "3.15.0"
types-pytz = "2024.1.0.20240203"
[tool.poetry.scripts]
actransit-rt = "actransit_rt.cli:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py312']
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
minversion = "8.0"
addopts = [
"-ra",
"-q",
"--import-mode=importlib",
]
testpaths = ["tests"]
pythonpath = ["src"]