chore: scaffold bookmark project structure
This commit is contained in:
parent
b16d6b4250
commit
4aee1e5181
6 changed files with 29 additions and 0 deletions
9
.gitignore
vendored
Normal file
9
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
.venv/
|
||||||
|
*.egg-info/
|
||||||
|
.pytest_cache/
|
||||||
|
captures/
|
||||||
|
catalogue.csv
|
||||||
|
reference.jpg
|
||||||
|
config.json
|
||||||
0
bookmark/__init__.py
Normal file
0
bookmark/__init__.py
Normal file
0
bookmark/api/__init__.py
Normal file
0
bookmark/api/__init__.py
Normal file
0
bookmark/capture_strategies/__init__.py
Normal file
0
bookmark/capture_strategies/__init__.py
Normal file
20
pyproject.toml
Normal file
20
pyproject.toml
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
[project]
|
||||||
|
name = "bookmark"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = "Book intake and checkout inventory system for Books in Hand"
|
||||||
|
requires-python = ">=3.11"
|
||||||
|
dependencies = [
|
||||||
|
"fastapi>=0.110",
|
||||||
|
"uvicorn[standard]>=0.29",
|
||||||
|
"opencv-python>=4.9",
|
||||||
|
"numpy>=1.26",
|
||||||
|
]
|
||||||
|
|
||||||
|
[project.optional-dependencies]
|
||||||
|
dev = [
|
||||||
|
"pytest>=8.0",
|
||||||
|
"httpx>=0.27",
|
||||||
|
]
|
||||||
|
|
||||||
|
[tool.pytest.ini_options]
|
||||||
|
pythonpath = ["."]
|
||||||
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
Loading…
Reference in a new issue