-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.16 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "tiny-api-client"
dynamic = ["version"]
authors = [
{ name="Jacob Sánchez", email="[email protected]" },
]
description = "The short and sweet way to create an API client"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries"
]
dependencies = ["requests", "typing_extensions"]
[tool.setuptools_scm]
[project.optional-dependencies]
test = ["pytest", "pytest-mock", "exceptiongroup", "mypy"]
docs = ["sphinx", "sphinx-rtd-theme"]
[project.urls]
"Repository" = "https://github.com/sanjacob/tiny-api-client"
"Bug Tracker" = "https://github.com/sanjacob/tiny-api-client/issues"
[tool.isort]
no_sections = true