-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.08 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
[tool.poetry]
name = "stats_can"
version = "2.9.4"
description = "Read StatsCan data into python, mostly pandas dataframes"
authors = ["Ian Preston"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/ianepreston/stats_can"
repository = "https://github.com/ianepreston/stats_can"
documentation = "https://stats-can.readthedocs.io"
keywords = ["statistics", "Canada", "data", "API"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
requests = "*"
h5py = "*"
tables = "*"
tqdm = "*"
pandas = "*"
numpy = "*"
[tool.poetry.group.dev.dependencies]
pre-commit = ">=2"
pytest = ">=8"
black = ">=24"
ruff = "*"
coverage = {extras = ["toml"], version = ">=7.2"}
pytest-cov = ">=4.0"
codecov = ">=2.1"
sphinx = ">=6.1"
darglint = ">=1.7"
xdoctest = ">=1.1"
sphinx-autodoc-typehints = ">=1.23"
sphinx_rtd_theme = ">=1.2"
safety = ">=2.3"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["stats_can"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"