forked from mathsman5133/coc.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "coc.py"
authors = [{ name = "mathsman5133" }]
maintainers = [{ name = "majordoobie" }, { name = "MagicTheDev" }, { name = "Kuchenmampfer" },
{ name = "lukasthaler"}, { name = "doluk"}]
version = "3.7.2"
description = "A python wrapper for the Clash of Clans API"
requires-python = ">=3.7.3"
readme = "README.rst"
license = { text = "MIT" }
keywords = ["coc", "clash of clans", "coc.py", "clash api"]
classifiers = ["Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Natural Language :: English",
"Operating System :: OS Independent",]
dependencies = ["aiohttp", "ujson"]
[project.urls]
documentation = "https://cocpy.readthedocs.io/en/latest/"
repository = "https://github.com/mathsman5133/coc.py"
changelog = "https://cocpy.readthedocs.io/en/latest/miscellaneous/changelog.html"
[project.optional-dependencies]
docs = ["sphinx",
"sphinx_rtd_theme",
"sphinxcontrib_trio",
"autodocsumm",
]
[tool.setuptools]
packages = ["coc", "coc.ext.discordlinks", "coc.static", "coc.ext.fullwarapi", "coc.ext.triggers"]
include-package-data = true
[tool.setuptools.package-data]
coc = ["events.pyi"]