aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml30
1 files changed, 30 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..ae1f84e
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,30 @@
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"
+
+[project]
+name = "jprov"
+version = "0.1.0"
+description = "FreeBSD jail provisioning tool"
+readme = "README.md"
+requires-python = ">=3.11"
+license = {text = "BSD-2-Clause"}
+authors = [
+ {name = "jprov"}
+]
+classifiers = [
+ "Programming Language :: Python :: 3",
+ "License :: OSI Approved :: BSD License",
+ "Operating System :: POSIX :: BSD :: FreeBSD",
+]
+
+[project.scripts]
+jprov = "jprov.main:main"
+
+[tool.hatch.build]
+include = [
+ "jprov/**",
+ "docs/**",
+ "README.md",
+ "pyproject.toml",
+]