diff --git a/README.md b/README.md index dc7ae4a..d585f1a 100644 --- a/README.md +++ b/README.md @@ -1 +1,7 @@ +
+ ablate — Turn experiments into notes. +
+ # ablate + +Turn experiments into notes. diff --git a/ablate/core/cli/main.py b/ablate/core/cli/main.py deleted file mode 100644 index 81495e1..0000000 --- a/ablate/core/cli/main.py +++ /dev/null @@ -1,2 +0,0 @@ -def main() -> None: # TODO - pass diff --git a/docs/source/_static/logo_banner.png b/docs/source/_static/logo_banner.png new file mode 100644 index 0000000..9a9635c Binary files /dev/null and b/docs/source/_static/logo_banner.png differ diff --git a/pyproject.toml b/pyproject.toml index cc15f8d..9485b32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "ablate" version = "0.1.0" -description = "ablate" +description = "Turn experiments into notes." authors = [{ name = "Simon Rampp", email = "simon@rampp.dev" }] license = { text = "MIT" } readme = "README.md" @@ -37,9 +37,6 @@ dev = [ requires = ["hatchling"] build-backend = "hatchling.build" -[project.scripts] -ablate = "ablate.core.cli.main:main" - [project.optional-dependencies] mlflow = ["mlflow>=2.22.0"] jupyter = ["jupyter>=1.1.1"]