diff --git a/pyproject.toml b/pyproject.toml index 5ccc43b..460b316 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,9 +2,8 @@ name = "bertron-schema" version = "0.1.0" description = "LinkML schema for BER data integration work" -license = "LICENSE" +license = "BSD-3-Clause" readme = "README.md" -include = ["README.md", "src/bertron_schema/schema"] requires-python = ">=3.12.9" dependencies = [ "linkml>=1.9.2", @@ -141,3 +140,13 @@ exclude = [ "venv", ] per-file-ignores = {} + +[build-system] +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[tool.setuptools.packages.find] +where = ["src"] + +[tool.setuptools.package-dir] +"" = "src" diff --git a/src/schema/__init__.py b/src/schema/__init__.py new file mode 100644 index 0000000..c76ae4a --- /dev/null +++ b/src/schema/__init__.py @@ -0,0 +1,2 @@ +# bertron-schema package +__version__ = "0.1.0"