Skip to content

Commit

Permalink
Add project metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
AstraLuma committed Nov 20, 2024
1 parent 182ac1b commit 08dfd99
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/sdk/
/dist/
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
steamapi
========

Python bindings to access the steam overlay API (overlay, stats, achievements, DLC, etc).

Extracted from Ren'Py.
24 changes: 24 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Based on https://packaging.python.org/en/latest/tutorials/packaging-projects/
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "steamapi"
version = "0.0.1"
authors = [
{ name="Tom Rothamel", email="[email protected]" },
{ name="Jamie Bliss", email="[email protected]" }
]
description = "Python bindings to steam overlay etc"
readme = "README.md"
requires-python = ">=3.8"
# https://pypi.org/classifiers/
classifiers = [
"Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]

[project.urls]
Homepage = "https://github.com/games-in-python/steamapi"

0 comments on commit 08dfd99

Please sign in to comment.