-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
34 lines (28 loc) · 1.01 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
[tool.poetry]
name = "composite_uk_imd"
version = "0.1.0"
description = "Composite version of UK and GB wide deprivation indexes for small areas."
authors = []
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
data_common = { path = "src/data_common/", develop = true }
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
[tool.poetry.scripts]
project = 'composite_uk_imd.__main__:main'
notebook = "data_common.notebookcli.__main__:run"
dataset = "data_common.dataset.__main__:run"
[tool.pyright]
include = ["src", "notebooks"]
exclude=["src/data_common/typings"]
stubPath="src/data_common/typings"
typeCheckingMode="basic"
reportPrivateImportUsage="warning"
[notebook.settings]
default_page_title = "Settings file defined title"
[tool.dataset]
dataset_dir = "data/packages"
publish_dir = "docs/"
publish_url = "https://pages.mysociety.org/composite_uk_imd/"
credit_text = "If you find this data useful, please let us know to help us make the case for future funding."
credit_url = "https://survey.alchemer.com/s3/6876792/Data-usage"