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

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
env/
clusterman.egg-info/
build/

3
clusterman/__init__.py Normal file
View file

@ -0,0 +1,3 @@
__version__ = "0.0.1"
from clusterman.__main__ import main

7
clusterman/__main__.py Normal file
View file

@ -0,0 +1,7 @@
def main():
print("it works!")

Binary file not shown.

Binary file not shown.

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"