diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-10-14 23:14:19 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-10-14 23:14:19 +0200 |
commit | a43c49511ba01aea3713def375455af3f3c45396 (patch) | |
tree | 9adcd7952623760c4e02db4981f137145537e06f /pyproject.toml | |
parent | 808f20882341cfe7c31399cfa20373f1d70f71da (diff) | |
download | reddit-nextcloud-importer-a43c49511ba01aea3713def375455af3f3c45396.tar.gz reddit-nextcloud-importer-a43c49511ba01aea3713def375455af3f3c45396.tar.bz2 reddit-nextcloud-importer-a43c49511ba01aea3713def375455af3f3c45396.zip |
fix: Fix the whole package setup
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 48967ff..adde93c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ repository = "https://git.sr.ht/~gabrielgio/reddit-nextcloud-importer" description = "Reddit to Nextcloud importer" authors = ["Gabriel Arakaki Giovanini <mail@gabielgio.me>"] packages = [ - { include = "reddit-nextcloud-importer" } + { include = "reddit_nextcloud_importer" } ] [tool.poetry.dependencies] @@ -25,6 +25,10 @@ coverage = "^6.3.2" pytest-mock = "^3.7.0" pytest-cov = "^3.0.0" + +[tool.poetry.scripts] +reddit-nextcloud-importer = "reddit_nextcloud_importer:main" + [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" |