Init project

This commit is contained in:
Loïc Guégan 2023-10-25 11:55:17 +02:00
parent 3d445ed2d6
commit b014c3fba1
6 changed files with 32 additions and 0 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[project]
name = "clusterman"
dynamic = ["version"]
dependencies = []
description = "Simple cluster management utility"
readme = "README.md"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["clusterman"]
[tool.setuptools.dynamic]
version = {attr = "clusterman.__version__"}
[project.scripts]
clusterman = "clusterman:main"