mirror of
https://github.com/tgorordo/carousel.git
synced 2026-06-12 20:42:13 -07:00
init commit; data shapes mostly defined. some tests and sketched documentation in README. core algorithm TODO next
This commit is contained in:
commit
c571fa1d17
8 changed files with 434 additions and 0 deletions
41
pyproject.toml
Normal file
41
pyproject.toml
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
[project]
|
||||
name = "carousel"
|
||||
version = "0.1.0"
|
||||
description = "A Stable Marriage Solver."
|
||||
readme = "README.md"
|
||||
authors = [{ name = "Thomas (Tom) C. Gorordo", email = "tcgorordo@gmail.com" }]
|
||||
requires-python = ">=3.13"
|
||||
dependencies = [
|
||||
"click>=8.1.8",
|
||||
"numpy>=2.2.4",
|
||||
"polars>=1.26.0",
|
||||
"pytest-benchmark>=5.1.0",
|
||||
"rich>=14.0.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
carousel = "carousel:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"hypothesis>=6.130.8",
|
||||
"pyclean>=3.1.0",
|
||||
"pyinstaller>=6.12.0",
|
||||
"pyright>=1.1.398",
|
||||
"pytest>=8.3.5",
|
||||
"ruff>=0.11.2",
|
||||
]
|
||||
|
||||
[pytest]
|
||||
testpaths = "test"
|
||||
|
||||
[tool.pyright]
|
||||
include = ["src"]
|
||||
exclude = ["test"]
|
||||
|
||||
reportMissingImports = "error"
|
||||
reportMissingTypeStubs = false
|
||||
Loading…
Add table
Add a link
Reference in a new issue