forked from PaxxPatriot/skinport.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.52 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "skinport.py"
authors = [
{name = "PaxxPatriot", email = "skinport.py@gmail.com" },
]
description = "A Python wrapper for the Skinport API"
readme = "README.md"
keywords = ["Skinport", "Counter-Strike 2", "Team Fortress 2", "Dota 2", "Rust"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: aiohttp",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
requires-python = ">= 3.10"
dependencies = [
"aiohttp",
"asyncache",
"cachetools",
"python-socketio[asyncio_client]",
"msgpack",
"brotli"
]
dynamic = ["version"]
[project.urls]
Documentation = "https://paxxpatriot.github.io/skinport.py/"
Repository = "https://github.com/PaxxPatriot/skinport.py.git"
Issues = "https://github.com/PaxxPatriot/skinport.py/issues"
[tool.setuptools]
packages = ["skinport"]
[tool.setuptools.dynamic]
version = {attr = "skinport.__version__"}