-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (45 loc) · 1.46 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fingertips_py"
dynamic = ["version"]
license = {file = "LICENSE"}
authors = [
{name = "Russell Plunkett"},
{name = "Annabel Westermann"},
{name = "Hadley Nanayakkara"},
{name = "Olivia Box Power"}
]
maintainers = [
{name = "DHSC", email = "[email protected]"}
]
description = "This is a python package to interact with OHID Fingertips data tool. This can be used to load data from the Fingertips API into Python for further manipulation."
dependencies = [
"pandas>=1.5",
"requests"
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
keywords = [
"DHSC",
"Department of Health and Social Care",
"OHID",
"Office for Health Improvement and Disparities",
"Public Health",
"indicators",
"Fingertips"
]
[project.urls]
Homepage = "https://github.com/ukhsa-collaboration/PHDS_fingertips_py?tab=readme-ov-file"
Documentation = "https://fingertips-py.readthedocs.io/en/latest/"
Repository = "https://github.com/ukhsa-collaboration/PHDS_fingertips_py"
Issues = "https://github.com/ukhsa-collaboration/PHDS_fingertips_py/issues"
Changelog = "https://github.com/ukhsa-collaboration/PHDS_fingertips_py/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "fingertips_py.__version__"}