mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-06 03:56:27 +02:00
Init project
This commit is contained in:
parent
3d445ed2d6
commit
b014c3fba1
6 changed files with 32 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
env/
|
||||||
|
clusterman.egg-info/
|
||||||
|
build/
|
3
clusterman/__init__.py
Normal file
3
clusterman/__init__.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
__version__ = "0.0.1"
|
||||||
|
|
||||||
|
from clusterman.__main__ import main
|
7
clusterman/__main__.py
Normal file
7
clusterman/__main__.py
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
print("it works!")
|
BIN
clusterman/__pycache__/__init__.cpython-311.pyc
Normal file
BIN
clusterman/__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
BIN
clusterman/__pycache__/__main__.cpython-311.pyc
Normal file
BIN
clusterman/__pycache__/__main__.cpython-311.pyc
Normal file
Binary file not shown.
19
pyproject.toml
Normal file
19
pyproject.toml
Normal 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"
|
Loading…
Add table
Reference in a new issue