forked from acurtis166/SPNKr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 981 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 981 Bytes
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.0.0', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'spnkr'
version = '0.6.0'
description = 'Python API for retrieving Halo Infinite multiplayer data.'
readme = 'README.md'
authors = [{name = 'Andy Curtis'}]
license = {file = 'LICENSE'}
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
keywords = ['halo', 'infinite', 'api']
dependencies = ['aiohttp>=3', 'aiolimiter>=1', 'pydantic>=2']
requires-python = '>=3.11'
[project.optional-dependencies]
dev = [
'aiohttp-client-cache==0.10.0',
'pytest>=7',
'pytest-asyncio',
'coverage>=7',
'mkdocs>=1',
'mkdocstrings[python]',
'mkdocs-material>=9',
'python-dotenv>=1.0',
]
[project.urls]
Homepage = 'https://github.com/acurtis166/SPNKr'
Documentation = 'https://acurtis166.github.io/SPNKr/'
[tool.setuptools.packages.find]
include = ['spnkr*']