Add missing dev dependencies and update README

This commit is contained in:
Hubert Siejkowski 2024-07-22 10:05:50 +02:00
parent a04b9a3107
commit a19f746d4b
3 changed files with 9 additions and 1 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
dist dist
*.pyc *.pyc
dev dev
.micromamba

View File

@ -108,6 +108,7 @@ Options:
Commands: Commands:
citation Prints citation of the model citation Prints citation of the model
extras Downloads extra model weights from EPOS AI Platform
list-pretrained Show pretrained model names list-pretrained Show pretrained model names
pick Detect phases in streams pick Detect phases in streams
version Prints version version Prints version

View File

@ -38,7 +38,8 @@ dependencies = [
"ipython", "ipython",
"black", "black",
"isort", "isort",
"cogapp" "cogapp",
"twine"
] ]
[tool.hatch.envs.default.scripts] [tool.hatch.envs.default.scripts]
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=gpd_tool --cov=tests" cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=gpd_tool --cov=tests"
@ -64,3 +65,8 @@ exclude_lines = [
[project.scripts] [project.scripts]
gpd_tool = "epos_ai_picking_tools.cli_gpd:cli" gpd_tool = "epos_ai_picking_tools.cli_gpd:cli"
phasenet_tool = "epos_ai_picking_tools.cli_phasenet:cli" phasenet_tool = "epos_ai_picking_tools.cli_phasenet:cli"
[tool.hatch.build.targets.sdist]
exclude = [
".micromamba"
]