-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 990 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
[project]
name = "CurseForgeAPy"
version = "1.1.5"
authors = [
{ name="James O'Grady", email="jamesmoose2854@gmail.com" },
]
description = "A wrapper for the Eternal (CurseForge) API"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["Minecraft", "Curseforge", "Eternal", "API", "Wrapper"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"requests>=2.26.0",
"jsonpickle>=3.0.0",
"requests_cache>=0.9.7",
]
[project.urls]
"Repository" = "https://github.com/James2854/CurseforgeAPy"
"Bug Tracker" = "https://github.com/James2854/CurseforgeAPy/issues"
"Documentation" = "https://docs.curseforge.com/"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"