-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (59 loc) · 1.11 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "policyengine_uk_data"
version = "1.9.0"
description = "A package to create representative microdata for the UK."
readme = "README.md"
authors = [
{name = "PolicyEngine", email = "[email protected]"},
]
license = {file = "LICENSE"}
requires-python = ">=3.6"
dependencies = [
"policyengine_core",
"requests",
"tqdm",
"tabulate",
]
[project.optional-dependencies]
dev = [
"black",
"pytest",
"torch",
"tables",
"furo",
"jupyter-book",
"yaml-changelog>=0.1.7",
"itables",
"quantile-forest",
"build",
]
[tool.setuptools]
packages = ["policyengine_uk_data"]
include-package-data = true
[tool.setuptools.package-data]
"policyengine_uk_data" = ["**/*"]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = [
"tests",
]
[tool.black]
line-length = 79
target-version = ['py311']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''