-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.07 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
[project]
name = "odm_validation"
version = "0.6.1"
authors = [
{ name="OHRI", email="PHES-ODM@ohri.ca" }
]
description = "Population Health and Envirmental Open Data Model (PHES-ODM) Validation Toolkit"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
[project.urls]
"Homepage" = "https://github.com/Big-Life-Lab/PHES-ODM-Validation"
"Bug Tracker" = "https://github.com/Big-Life-Lab/PHES-ODM-Validation/issues"
[project.scripts]
odm-validate = "odm_validation.tools.validate:main"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
# specify package dir
[tool.hatch.build.targets.wheel]
packages = ["src/odm_validation"]
# include validation schemas
[tool.hatch.build.targets.wheel.force-include]
"assets/validation-schemas" = "odm_validation/assets/validation-schemas"
# install dependencies automatically
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]