Skip to content

Commit

Permalink
Prep 0.0.2 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshKarpel authored Dec 27, 2023
1 parent 0f6fa6e commit 2f18752
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
4 changes: 3 additions & 1 deletion docs/reference/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## `Next`
## `0.0.2`

Released `2023-12-26`

### Added

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
14 changes: 9 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -33,6 +34,9 @@ authors = ["JoshKarpel <[email protected]>"]
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"
Expand All @@ -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"
Expand All @@ -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'
Expand Down

0 comments on commit 2f18752

Please sign in to comment.