-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (44 loc) · 1.31 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
[tool.poetry]
name = "omop-cdm"
version = "0.2.0"
description = "SQLAlchemy ORM of the OHDSI OMOP CDM"
authors = [
"Spayralbe <stefan@thehyve.nl>",
]
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"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",
]
[tool.poetry.urls]
"Repository" = "https://github.com/thehyve/omop-cdm"
"Documentation" = "https://github.com/thehyve/omop-cdm/blob/main/docs/README.md"
[tool.poetry.dependencies]
python = "^3.9"
sqlalchemy = "^2.0.4"
[tool.poetry.group.dev.dependencies]
nox = "^2024.4.15"
ruff = "^0.3.2"
pre-commit = "^3.5.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
pytest-cov = "^4.1.0"
testcontainers = {version = ">=3.7.1", extras = ["postgres"]}
psycopg2-binary = "^2.9.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
pythonpath = [
".",
]