-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f6fa6e
commit 2f18752
Showing
3 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# Changelog | ||
|
||
## `Next` | ||
## `0.0.2` | ||
|
||
Released `2023-12-26` | ||
|
||
### Added | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[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" | ||
|
@@ -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' | ||
|