feat: add basic functionality
This commit is contained in:
commit
376b9d6877
11 changed files with 1168 additions and 0 deletions
27
pyproject.toml
Normal file
27
pyproject.toml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
[tool.poetry]
|
||||
name = "halig"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = ["cătălin <catalin@roboces.dev>"]
|
||||
readme = "README.md"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
halig = "halig.main:app"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
typer = "^0.6.1"
|
||||
rich = "^12.5.1"
|
||||
sh = "^1.14.3"
|
||||
pydantic = "^1.9.1"
|
||||
PyYAML = "^6.0"
|
||||
seedir = "^0.3.1"
|
||||
|
||||
|
||||
[tool.poetry.group.linters.dependencies]
|
||||
pre-commit = "^2.20.0"
|
||||
black = "^22.6.0"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
Loading…
Add table
Add a link
Reference in a new issue