Initial commit

This commit is contained in:
2026-02-01 00:34:33 +00:00
commit f70245e371
8 changed files with 172153 additions and 0 deletions

30
pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[project]
name = "lab-pokemon"
version = "0.1.0"
description = ""
authors = [{ name = "Chris Proctor", email = "chris@chrisproctor.net" }]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"jupyter (>=1.1.1,<2.0.0)",
"pandas (>=2.2.3,<3.0.0)",
"matplotlib (>=3.10.0,<4.0.0)",
"seaborn (>=0.13.2,<0.14.0)",
"requests (>=2.32.3,<3.0.0)",
]
[build-system]
requires = ["uv_build>=0.9.0,<0.10.0"]
build-backend = "uv_build"
[tool.uv]
package = false