We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f4d2f9a + 4fc0a5b commit d9ea00eCopy full SHA for d9ea00e
pyproject.toml
@@ -2,9 +2,8 @@
2
name = "bertron-schema"
3
version = "0.1.0"
4
description = "LinkML schema for BER data integration work"
5
-license = "LICENSE"
+license = "BSD-3-Clause"
6
readme = "README.md"
7
-include = ["README.md", "src/bertron_schema/schema"]
8
requires-python = ">=3.12.9"
9
dependencies = [
10
"linkml>=1.9.2",
@@ -141,3 +140,13 @@ exclude = [
141
140
"venv",
142
]
143
per-file-ignores = {}
+
144
+[build-system]
145
+requires = ["setuptools>=61.0", "wheel"]
146
+build-backend = "setuptools.build_meta"
147
148
+[tool.setuptools.packages.find]
149
+where = ["src"]
150
151
+[tool.setuptools.package-dir]
152
+"" = "src"
src/schema/__init__.py
@@ -0,0 +1,2 @@
1
+# bertron-schema package
+__version__ = "0.1.0"
0 commit comments