-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.67 KB
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>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rcpchgrowth"
version = "4.4.1"
description = "SDS and Centile calculations for UK Growth Data"
keywords = ["growth charts", "anthropometry", "SDS", "centile", "UK-WHO", "UK90", "Trisomy 21", "Turner", "CDC"]
license = "AGPL-3.0-or-later"
authors = [
{ name = "RCPCH Incubator", email = "incubator@rcpch.ac.uk" },
]
maintainers = [
{ name = "RCPCH Incubator", email = "incubator@rcpch.ac.uk" },
]
requires-python = ">=3.8"
dependencies = [
"python-dateutil",
"scipy",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
[project.urls]
Homepage = "https://github.com/rcpch/rcpchgrowth-python"
"Bug Reports" = "https://github.com/rcpch/rcpchgrowth-python/issues"
"API management" = "https://dev.rcpch.ac.uk"
Documentation = "https://growth.rcpch.ac.uk/products/python-library/"
[project.optional-dependencies]
notebook = [
"pandas>=1.5",
"matplotlib>=3.7",
"jupyterlab",
"ipykernel",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["rcpchgrowth*"]
exclude = ["notebooks"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools.package-data]
rcpchgrowth = ["data_tables/**/*.csv", "data_tables/**/*.json", "data_tables/**/*.xls", "data_tables/**/*.pdf", "data_tables/**/*.bas", "data_tables/**/*.xlsx"]