aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 232447d995e06d8543044944725e23e8d5c9ef01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "jprov"
version = "0.1.7"
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",
]