We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bba1b8a commit 24ada68Copy full SHA for 24ada68
.gitignore
@@ -10,3 +10,6 @@
10
# hg stuff
11
*.orig
12
status
13
+
14
+# artefacts
15
+src/_version.py
pyproject.toml
@@ -1,3 +1,28 @@
1
+[project]
2
+name = "odoo_upgrade"
3
+authors = [
4
+ { name = "Odoo Upgrade Team", email = "[email protected]" }
5
+]
6
+dynamic = ["version"]
7
+dependencies = ["markdown"]
8
9
+[build-system]
+requires = ["hatchling", "hatch-vcs"]
+build-backend = "hatchling.build"
+[tool.hatch.build]
+only-include = ["src"]
16
+[tool.hatch.build.sources]
17
+"src" = "odoo/upgrade"
18
19
+[tool.hatch.version]
20
+source = "vcs"
21
+raw-options.version_scheme = "calver-by-date"
22
23
+[tool.hatch.build.hooks.vcs]
24
+version-file = "src/_version.py"
25
26
[tool.black]
27
line-length = 120
28
0 commit comments