-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (34 loc) · 1007 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "yew"
version = "0.1.1"
authors = [
{ name="Bharat Nair", email="[email protected]" },
]
description = "An OldSchool RuneScape API wrapper for Python."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"certifi==2024.2.2",
"charset-normalizer==3.3.2",
"idna==3.6",
"requests==2.31.0",
"urllib3==2.2.1",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"Topic :: Games/Entertainment :: Role-Playing",
]
[project.urls]
Homepage = "https://github.com/bharat-nair/yew"
Issues = "https://github.com/bharat-nair/yew/issues"