Skip to content

Commit

Permalink
v1.1.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
dodaucy authored Oct 15, 2024
2 parents 7262f07 + 2eb55e6 commit 477b1c6
Show file tree
Hide file tree
Showing 37 changed files with 2,387 additions and 1,151 deletions.
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Written to be used in the european union and tested in germany. If should be eas

This project is NOT affiliated with Steam. It is only for educational purposes.

Do not host this on a public server. This project is not safe for public use.

## Showcase

You can hover over almost anything to see more details.
Expand Down Expand Up @@ -46,11 +48,3 @@ Run this command before committing.
```bash
pdm lint
```

### Fix fixable lint errors

Currently only import errors are fixed.

```bash
pdm fix
```
259 changes: 258 additions & 1 deletion pdm.lock

Large diffs are not rendered by default.

19 changes: 13 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "steam-details"
version = "1.0.0"
version = "1.1.0"
description = "Displays some details for a steam app or a whole wishlist "
authors = [
{name = "dodaucy", email = "dodaucy@gmail.com"},
Expand All @@ -13,24 +13,32 @@ dependencies = [
"httpx>=0.27.2",
"beautifulsoup4>=4.12.3",
"playwright>=1.47.0",
"matplotlib>=3.9.2",
"pandas>=2.2.3",
"seaborn>=0.13.2",
]
requires-python = "==3.12.5"
requires-python = "==3.12.*"
readme = "README.md"
license = {file = "LICENSE"}

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"

[tool.pdm]
distribution = false
distribution = true

[tool.pdm.dev-dependencies]
dev = [
"ruff>=0.6.8",
]

[tool.pdm.scripts]
start = { cmd = "uvicorn main:app --host 127.0.0.1 --port 8000", working_dir = "src" }
start = {cmd = "python3 -m steam_details", working_dir = "src"}
lint = "ruff check src --respect-gitignore"
fix = "ruff check src --fix-only --respect-gitignore"

post_install = "playwright install"
pre_build = {composite = ["lint"]}

[tool.ruff]
target-version = "py312"
Expand Down Expand Up @@ -63,4 +71,3 @@ ignore = [
"D203", # 1 Blank line required before class docstring
"D212", # Multi-line docstring summary should start at the first line
]
fixable = ["I"]
174 changes: 0 additions & 174 deletions src/main.py

This file was deleted.

68 changes: 0 additions & 68 deletions src/service_manager.py

This file was deleted.

Loading

0 comments on commit 477b1c6

Please sign in to comment.