-
Notifications
You must be signed in to change notification settings - Fork 101
/
pyproject.toml
39 lines (34 loc) · 1.01 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
[build-system]
requires = [
"setuptools >= 61.0.0", # Support for setuptools config in pyproject.toml
]
build-backend = "setuptools.build_meta"
[project]
name = "requests-kerberos"
description = "A Kerberos authentication handler for python-requests"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Ian Cordasco", email = "[email protected]" },
{ name = "Cory Benfield" },
{ name = "Michael Komitee'" }
]
classifiers = [
"License :: OSI Approved :: ISC License (ISCL)"
]
dependencies = [
"requests >= 1.1.0",
"cryptography >= 1.3",
"pyspnego[kerberos]"
]
dynamic = ["version", "readme"]
[project.urls]
homepage = "https://github.com/requests/requests-kerberos"
[tool.setuptools]
include-package-data = true
packages = ["requests_kerberos"]
[tool.setuptools.package-data]
"*" = ["LICENSE", "AUTHORS"]
[tool.setuptools.dynamic]
version = { attr = "requests_kerberos.__version__" }
readme = { file = ["README.rst", "HISTORY.rst"], content-type = "text/x-rst" }