-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unfortunately due to some incompatibilities with pip and newer setuptools versions that introduced support for project definitions in the pyproject.toml this commit goes back to using the older setup.cfg definition. This ensures the project can be compiled from the sdist in more scenarios. At some point in the future this should be revisited when hosts come with newer pip versions.
- Loading branch information
Showing
4 changed files
with
51 additions
and
39 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,43 @@ | ||
[metadata] | ||
name = krb5 | ||
version = 0.5.0 | ||
url = https://github.com/jborean93/pykrb5 | ||
author = Jordan Borean | ||
author_email = jborean93@gmail.com | ||
license = MIT | ||
license_files = LICENSE | ||
description = Kerberos API bindings for Python | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
keywords = | ||
krb5 | ||
kerberos | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
License :: OSI Approved :: MIT License | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
|
||
[options] | ||
package_dir = | ||
=src | ||
packages = find: | ||
include_package_data = True | ||
python_requires = >= 3.7 | ||
|
||
[options.packages.find] | ||
where = src | ||
|
||
[options.package_data] | ||
krb5 = | ||
py.typed | ||
*.pyi | ||
|
||
[options.exclude_package_data] | ||
krb5 = | ||
*.pxd | ||
*.pyx |