-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (33 loc) · 1.08 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
[build-system]
requires = ["setuptools >= 68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "inspectomop"
authors = [
{name = "Jonathan Badger", email = "[email protected]"},
]
description = "Database query tool for the OMOP Common Data Model"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["data science", "healthcare", "ehr", "OMOP", "OHDSI", "cdm"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Development Status :: 4 - Beta"
]
dependencies = [
"sqlalchemy>=2.0",
"pandas"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {file = "inspectomop/VERSION.txt"} # any module attribute compatible with ast.literal_eval
[tool.setuptools]
packages = ["inspectomop", "inspectomop.queries", "inspectomop.test"]
[tool.setuptools.package-data]
"*" = ["*.*"]
[project.urls]
Documentation = "https://inpsectomop.readthedocs.io/en/master/"
Repository = "https://github.com/jbadger3/inspectomop"