-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to the new PEP 518 build setup that uses read only metadata and the new pyproject.toml configuration file. This should have no affect on end users of this library as Python has supported this configuration format in all the currently supported Python versions.
- Loading branch information
Showing
7 changed files
with
51 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters