Skip to content

Commit

Permalink
Improve versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanSteinbergPrealize committed Mar 20, 2024
1 parent a55d27b commit bc0de46
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
[build-system]
requires = ["setuptools >= 69.0"]
requires = ["setuptools >= 69.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"

[project]
name = "meds"
version = "0.1.3"
dynamic = ["version"]
description = "A data standard for working with event stream data"
readme = "README.md"
license = {text = "Apache-2.0"}

dependencies = [
"pyarrow >= 8",
"jsonschema",
"jsonschema >= 4.0.0",
"typing_extensions >= 4.0",
]

[tool.setuptools_scm]
version_file = "src/meds/_version.py"

[tool.isort]
multi_line_output = 3
include_trailing_comma = true
Expand Down
1 change: 1 addition & 0 deletions src/meds/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from meds._version import __version__ # noqa
import warnings

from .schema import (patient_schema, Measurement, Event, Patient, label, Label,
Expand Down

0 comments on commit bc0de46

Please sign in to comment.