Skip to content

Commit

Permalink
use uv
Browse files Browse the repository at this point in the history
  • Loading branch information
diceroll123 committed Dec 9, 2024
1 parent 7c5e6be commit 953f0ca
Show file tree
Hide file tree
Showing 5 changed files with 619 additions and 64 deletions.
3 changes: 0 additions & 3 deletions dev-requirements.txt

This file was deleted.

43 changes: 43 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
[project]
name = "dti-py"
version = "0.0.1"
description = "A Python wrapper for the Dress To Impress API"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"httpx[brotli,http2,zstd]==0.27.2",
"typing-extensions>=4.12.2",
]
license = { file = "LICENSE" }

[tool.ruff]
show-fixes = true
target-version = "py311"

[tool.ruff.lint]
extend-select = [
"C4",
"SIM",
"TC",
"UP",
"ANN201",
"ANN202",
"ANN204",
"ANN205",
"ANN206",
]
ignore = ["E501", "F403"]

[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"

[tool.pytest.ini_options]
asyncio_mode = "strict"

Expand All @@ -13,3 +49,10 @@ reportUnnecessaryTypeIgnoreComment = "warning"
reportUnusedImport = "error"
pythonVersion = "3.10"
typeCheckingMode = "basic"

[dependency-groups]
dev = [
"pillow>=11.0.0",
"pytest>=8.3.4",
"pytest-asyncio>=0.24.0",
]
3 changes: 0 additions & 3 deletions requirements.txt

This file was deleted.

58 changes: 0 additions & 58 deletions setup.py

This file was deleted.

Loading

0 comments on commit 953f0ca

Please sign in to comment.