chore: bump up the version

This commit is contained in:
Kristofers Solo 2024-01-16 20:02:50 +02:00
parent 63fdf72cc8
commit c0e998b882

View File

@ -4,26 +4,26 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "tetris" name = "tetris"
version = "0.1.1" version = "0.1.2"
description = "Tetris game" description = "Tetris game"
authors = [{ name = "Kristofers Solo", email = "dev@kristofers.xyz" }] authors = [{ name = "Kristofers Solo", email = "dev@kristofers.xyz" }]
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"
license = { file = "LICENSE" } license = { file = "LICENSE" }
dependencies = [ dependencies = [
"attrs==23.1.0", "attrs==23.1.0",
"loguru==0.7.2", "loguru==0.7.2",
"numpy==1.26.3", "numpy==1.26.3",
"pygame-ce==2.4.0", "pygame-ce==2.4.0",
"toml==0.10.2", "toml==0.10.2",
] ]
keywords = ["tetris", "game", "pygame"] keywords = ["tetris", "game", "pygame"]
classifiers = [ classifiers = [
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
"License :: OSI Approved :: GPLv3 License", "License :: OSI Approved :: GPLv3 License",
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
] ]
[project.urls] [project.urls]
@ -45,29 +45,29 @@ warn_unused_configs = true
[tool.ruff] [tool.ruff]
extend-select = [ extend-select = [
"B", "B",
"BLE", "BLE",
"C4", "C4",
"ERA", "ERA",
"I", "I",
"ICN", "ICN",
"INP", "INP",
"ISC", "ISC",
"N", "N",
"NPY", "NPY",
"PGH", "PGH",
"PIE", "PIE",
# "PTH", # "PTH",
"Q", "Q",
"RET", "RET",
"RSE", "RSE",
"RUF", "RUF",
"S", "S",
"SIM", "SIM",
"T20", "T20",
"TCH", "TCH",
"TID", "TID",
"YTT", "YTT",
] ]
ignore = ["E741"] ignore = ["E741"]
show-fixes = true show-fixes = true