-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.71 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "requests_auth"
description = "Authentication for Requests"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Colin Bounouar", email = "[email protected]" }
]
maintainers = [
{name = "Colin Bounouar", email = "[email protected]" }
]
keywords = [
"authentication",
"ntlm",
"oauth2",
"okta",
"aad",
"entra"
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"requests==2.*",
]
dynamic = ["version"]
[project.urls]
documentation = "https://colin-b.github.io/requests_auth/"
repository = "https://github.com/Colin-b/requests_auth"
changelog = "https://github.com/Colin-b/requests_auth/blob/master/CHANGELOG.md"
issues = "https://github.com/Colin-b/requests_auth/issues"
[project.optional-dependencies]
testing = [
# Used to generate test tokens
"pyjwt==2.*",
# Used to mock requests
"pytest-responses==0.5.*",
# Used to check coverage
"pytest-cov==5.*",
]
[tool.setuptools.packages.find]
exclude = ["tests*"]
[tool.setuptools.dynamic]
version = {attr = "requests_auth.version.__version__"}