diff --git a/docs/reference/changelog.md b/docs/reference/changelog.md index 96621e9d..625e879f 100644 --- a/docs/reference/changelog.md +++ b/docs/reference/changelog.md @@ -1,6 +1,8 @@ # Changelog -## `Next` +## `0.0.2` + +Released `2023-12-26` ### Added diff --git a/mkdocs.yml b/mkdocs.yml index 7d28e570..f3c20b8c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -14,7 +14,7 @@ theme: name: material favicon: assets/favicon.png icon: - logo: fontawesome/solid/person-chalkboard + logo: fontawesome/solid/terminal palette: - scheme: default toggle: diff --git a/pyproject.toml b/pyproject.toml index 53149c1f..247d17ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,23 +4,24 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "counterweight" -version = "0.0.1" -description = "" +version = "0.0.2" +description = "An experimental TUI framework for Python, inspired by React and Tailwind" readme="README.md" homepage="https://github.com/JoshKarpel/counterweight" repository="https://github.com/JoshKarpel/counterweight" +documentation="https://www.counterweight.dev" classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Education", "License :: OSI Approved :: MIT License", -# "Operating System :: Microsoft :: Windows", "Operating System :: MacOS", "Operating System :: Unix", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Artistic Software", "Topic :: Multimedia :: Graphics :: Presentation", "Typing :: Typed", @@ -33,6 +34,9 @@ authors = ["JoshKarpel "] license = "MIT" include = ["py.typed"] +[tool.poetry.urls] +"Bug Tracker" = "https://github.com/JoshKarpel/counterweight/issues" + [tool.poetry.dependencies] python = ">=3.11,<4" typer = ">=0.9" @@ -44,6 +48,7 @@ cachetools = ">=5.3" [tool.poetry.group.dev.dependencies] pre-commit = ">=3" +black = "==23.3.0" watchfiles = ">=0.19" pytest = ">=7" pytest-cov = ">=3" @@ -52,12 +57,11 @@ pytest-asyncio = ">=0.20" pytest-mock = ">=3" hypothesis = ">=6.80" mypy = ">=1" +types-cachetools = ">=5.3" mkdocs = ">=1.4" mkdocs-material = ">=9" mkdocstrings = {extras = ["python"], version = ">=0.19.0"} line-profiler = ">=4.1" -types-cachetools = ">=5.3" -black = "==23.3.0" [tool.poetry.scripts] counterweight = 'counterweight.cli:cli'