Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
trex 0.1.1 🦖
Browse files Browse the repository at this point in the history
  • Loading branch information
berrysauce committed Apr 27, 2022
1 parent d5d4d45 commit 3efc900
Show file tree
Hide file tree
Showing 11 changed files with 406 additions and 80 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
typer
typer
tabulate
74 changes: 0 additions & 74 deletions src/main.py

This file was deleted.

Empty file added trex/README.md
Empty file.
Empty file added trex/__init__.py
Empty file.
206 changes: 206 additions & 0 deletions trex/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions trex/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[tool.poetry]
name = "trex"
version = "0.1.1"
description = "Templatosaurus Rex 🦖 Create and manage project templates in your terminal"
authors = ["Paul Haedrich <[email protected]>"]
readme = "README.md"

[tool.poetry.scripts]
trex = "trex.main:app"

[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.4.1"
tabulate = "^0.8.9"

[tool.poetry.dev-dependencies]
pytest = "^5.2"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Empty file added trex/tests/__init__.py
Empty file.
5 changes: 5 additions & 0 deletions trex/tests/test_trex.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from trex import __version__


def test_version():
assert __version__ == '0.1.0'
1 change: 1 addition & 0 deletions trex/trex/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.1.1"
Loading

0 comments on commit 3efc900

Please sign in to comment.