-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/sdk/ | ||
/dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |