-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (53 loc) · 1.1 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
[project]
name = "census21api"
authors = [
{name="Michaela Lawrence"},
{name="Mac Agbenla"},
{name="Lucy Astley-Jones"},
{name="Rhodri Cavell"},
{name="Ed Cuss"},
{name="Fatima Hussain"},
{name="Samantha Iacob"},
{name="Richard Marshall"},
{name="Joel Paull"},
{name="Yunus Rabbani"},
{name="Mollie Willson"},
{name="Henry Wilde"},
]
description = "A package for querying the 2021 England and Wales Census API"
readme = "README.md"
requires-python = ">=3.8"
version = "0.0.1"
dependencies = [
"pandas<2.1",
"requests",
"typing",
]
[project.optional-dependencies]
test = [
"hypothesis",
"pytest",
"pytest-cov",
"pytest-randomly",
]
lint = [
"black<24",
"ruff",
]
docs = [
"nbval>=0.10.0",
"quartodoc>=0.5.0; python_version>='3.9'",
"seaborn>=0.12.1"
]
dev = [
"census21api[test,lint,docs]",
]
[project.urls]
homepage = "https://github.com/datasciencecampus/census21api"
[tool.black]
line-length = 79
[tool.ruff]
lint.extend-select = ["I", "W"]
line-length = 79
[tool.ruff.lint.isort]
known-first-party = ["census21api"]