-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (75 loc) · 2.24 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (75 loc) · 2.24 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[project]
name = "orm-loader"
dynamic = ["version"]
description = "Generic base classes to handle ORM functionality for multiple downstream datamodels"
readme = "README.md"
authors = [
{ name = "gkennos", email = "georgina.kennedy@unsw.edu.au" }
]
license = { text = "Apache-2.0" }
requires-python = ">=3.12"
dependencies = [
"chardet>=5.2.0",
"oa-configurator>=1.0.0,<2.0.0",
"pandas>=2.3.3",
"pyarrow>=23.0.1",
"sqlalchemy>=2.0.45",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Database :: Database Engines/Servers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://AustralianCancerDataNetwork.github.io/orm-loader"
Documentation = "https://AustralianCancerDataNetwork.github.io/orm-loader"
Repository = "https://github.com/AustralianCancerDataNetwork/orm-loader"
Issues = "https://github.com/AustralianCancerDataNetwork/orm-loader/issues"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
raw-options = { tag_regex = '^v?(?P<version>[0-9]+\.[0-9]+\.[0-9]+)$' }
[tool.hatch.build.targets.wheel]
packages = ["src/orm_loader"]
[project.optional-dependencies]
postgres = [
"psycopg[binary]>=3.2",
]
dev = [
"oa-configurator[postgres]>=1.0.0,<2.0.0",
"pytest>=9.0.3",
"ty>=0.0.59",
"ruff>=0.14.11",
"mkdocs-material>=9.7.7",
"mkdocstrings-python>=2.0.1",
"requests>=2.33.0",
"mkdocs>=1.6.1",
"mkdocs-mermaid2-plugin",
"Pygments>=2.20.0",
"python-dotenv"
]
[project.entry-points."omop.config"]
orm_loader = "orm_loader.config:OrmLoaderConfig"
[tool.uv]
cache-keys = [{ file = "pyproject.toml" }, { git = { commit = true, tags = true } }]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.mypy]
python_version = "3.11"
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-ra"
[tool.pyright]
reportMissingTypeStubs = false