diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..07859e3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +env/ +clusterman.egg-info/ +build/ \ No newline at end of file diff --git a/clusterman/__init__.py b/clusterman/__init__.py new file mode 100644 index 0000000..9e2b30a --- /dev/null +++ b/clusterman/__init__.py @@ -0,0 +1,3 @@ +__version__ = "0.0.1" + +from clusterman.__main__ import main diff --git a/clusterman/__main__.py b/clusterman/__main__.py new file mode 100644 index 0000000..f3b5ec8 --- /dev/null +++ b/clusterman/__main__.py @@ -0,0 +1,7 @@ + + + + + +def main(): + print("it works!") diff --git a/clusterman/__pycache__/__init__.cpython-311.pyc b/clusterman/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..47303d7 Binary files /dev/null and b/clusterman/__pycache__/__init__.cpython-311.pyc differ diff --git a/clusterman/__pycache__/__main__.cpython-311.pyc b/clusterman/__pycache__/__main__.cpython-311.pyc new file mode 100644 index 0000000..0e9b39c Binary files /dev/null and b/clusterman/__pycache__/__main__.cpython-311.pyc differ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e865194 --- /dev/null +++ b/pyproject.toml @@ -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"