Skip to content

Commit 6a947be

Browse files
committed
first commit
1 parent 011936a commit 6a947be

4 files changed

Lines changed: 414 additions & 0 deletions

File tree

poetry.lock

Lines changed: 257 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[tool.poetry]
2+
name = "rich-cli"
3+
version = "0.1.0a0"
4+
description = "Command Line Interface to Rich"
5+
authors = ["Will McGugan <willmcgugan@gmail.com>"]
6+
license = "MIT"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.6.2"
10+
rich = "^11.0.0"
11+
click = "^8.0.3"
12+
13+
[tool.poetry.dev-dependencies]
14+
black = "21.12b0"
15+
16+
[build-system]
17+
requires = ["poetry-core>=1.0.0"]
18+
build-backend = "poetry.core.masonry.api"
19+
20+
[tool.poetry.scripts]
21+
rich = 'rich_cli.__main__:run'

src/rich_cli/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)