-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.53 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
[project]
name = "omop-cdm"
version = "0.3.1"
description = "SQLAlchemy ORM of the OHDSI OMOP CDM"
authors = [
{name = "Spayralbe", email = "[email protected]"},
]
readme = "README.md"
license = {text = "Apache Software License"}
requires-python = ">=3.9,<4.0"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"sqlalchemy >= 2.0",
]
[project.urls]
"Repository" = "https://github.com/thehyve/omop-cdm"
"Documentation" = "https://github.com/thehyve/omop-cdm/blob/main/docs/README.md"
"Bug Tracker" = "https://github.com/thehyve/omop-cdm/issues"
"Changelog" = "https://github.com/thehyve/omop-cdm/blob/main/CHANGELOG.md"
[tool.poetry.group.dev.dependencies]
nox = "^2024.10.9"
ruff = "^0.9.3"
pre-commit = "^4.1.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
testcontainers = "^4.9.1"
psycopg2-binary = "^2.9.9"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
pythonpath = [
".",
]