-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (37 loc) · 1.04 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
[build-system]
requires = ["setuptools>=65.6.3"]
build-backend = "setuptools.build_meta"
[project]
name = "loinchpo"
description = "A library to transform loinc measurements into hpo terms."
authors = [
{ name = "Michael Gargano", email = "[email protected]" }
]
dynamic = ['version']
readme = "README.md"
requires-python = ">=3.8"
keywords = ["loinc", "hpo", "clinical", "omop"]
license = { file = "LICENSE.txt" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"click",
"ddt",
"pandas",
"pyspark"
]
[project.urls]
documentation = "https://thejacksonlaboratory.github.io/loinchpo"
repository = "https://github.com/TheJacksonLaboratory/loinchpo"
[project.scripts]
my-script = "loinchpo.main:cli"
[project.optional-dependencies]
dev = ["sphinx", "sphinx_rtd_theme", "coverage-badge", "twine"]
[tool.setuptools]
packages = ["loinchpo"]
[tool.setuptools.dynamic]
version = { attr = "loinchpo.__version__" }
[tool.distutils.bdist_wheel]
universal = true