Skip to content

Commit

Permalink
Merge pull request #3 from hija/packaging
Browse files Browse the repository at this point in the history
changes for packaging #2
  • Loading branch information
hija authored Sep 29, 2022
2 parents 6f5ac7b + bc192d1 commit 416e808
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
Empty file added fotoparadies/__init__.py
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion main.py → fotoparadies/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import typer
from rich.progress import track

from fotoparadies import FotoparadiesStatus
from .fotoparadies import FotoparadiesStatus
from rich.console import Console
from rich.table import Table
from platformdirs import user_config_dir
Expand Down
21 changes: 21 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[tool.poetry]
name = "fotoparadies"
version = "0.1.0"
description = "Shows status of fotoparadies orders"
authors = ["hilko"]
license = "MIT"
readme = "README.md"
packages = [{include = "fotoparadies"}]

[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.28.1"
typer = {extras = ["all"], version = "^0.6.1"}
platformdirs = "^2.5.2"

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

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 416e808

Please sign in to comment.