We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 469dffb commit 5a8d9c2Copy full SHA for 5a8d9c2
2 files changed
pyproject.toml
@@ -5,6 +5,18 @@ build-backend = "hatchling.build"
5
[tool.hatch.version]
6
path = "reqif/__init__.py"
7
8
+[tool.hatch.build]
9
+include = [
10
+ "LICENSE",
11
+ "README.md",
12
+ "pyproject.toml",
13
+ "reqif/"
14
+]
15
+exclude = [
16
+ "/.*",
17
+ "/tests",
18
19
+
20
[project]
21
name = "reqif"
22
dynamic = ["version"]
reqif/__init__.py
@@ -1,6 +1,6 @@
1
import os.path
2
3
-__version__ = "0.0.37"
+__version__ = "0.0.39"
4
PATH_TO_REQIF_ROOT = os.path.abspath(
os.path.join(os.path.dirname(__file__), os.pardir)
0 commit comments