-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 988 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["brussels_bike_forecasting/src"]
[project]
name = "brussels-bike-forecasting"
version = "2023.12.31"
authors = [
{name = "Loïc Quivron"},
]
maintainers = [
{name = "Loïc Quivron"}
]
description = "Project to predict bikes traffic flow and speed using Brussels Mobility API public data"
readme = "README.md"
dependencies = [
"pandas",
"numpy",
"scikit-learn",
"seaborn",
"requests",
"pandera",
"pydantic",
]
requires-python = ">= 3.9"
[project.optional-dependencies]
dev = [
"pytest",
"coverage",
"pytest-cov",
"pre-commit",
"black",
"isort",
]
[tool.black]
line-length = 88
include = "brussels_bike_forecasting/"
[tool.isort]
profile = "black"
[tool.interrogate]
verbose = 1
exclude = ["setup.py", "docs", "build"]
ignore-init-method = true
ignore-init-module = true
ignore-magic = true
fail-under = 70