-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore | ||
__path__ = __import__('pkgutil').extend_path(__path__, __name__) |
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
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 |
---|---|---|
|
@@ -4,9 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "keyrings.alt" | ||
authors = [ | ||
{ name = "Jason R. Coombs", email = "[email protected]" }, | ||
] | ||
authors = [{ name = "Jason R. Coombs", email = "[email protected]" }] | ||
description = "Alternate keyring implementations" | ||
readme = "README.rst" | ||
classifiers = [ | ||
|
@@ -17,10 +15,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3 :: Only", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"jaraco.classes", | ||
"jaraco.context", | ||
] | ||
dependencies = ["jaraco.classes", "jaraco.context"] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
|
@@ -35,11 +30,14 @@ test = [ | |
"keyring >= 20", | ||
"pycryptodomex", | ||
"pycryptodome", | ||
# gdata doesn't currently install on Python 3 | ||
# http://code.google.com/p/gdata-python-client/issues/detail?id=229 | ||
# gdata is archived since 2022, last update in 2016 | ||
# it installs but doesn't import on Python 3 | ||
# https://github.com/google/gdata-python-client/issues/29 | ||
# https://github.com/google/gdata-python-client/issues/65 | ||
'gdata; python_version=="2.7"', | ||
# keyczar doesn't currently install on Python 3. | ||
# http://code.google.com/p/keyczar/issues/detail?id=125 | ||
# Keyczar is deprecated in favor of Tink as of 2019. Archived since 2022. | ||
# python-keyczar also doesn't install on Python 3 | ||
# https://github.com/google/keyczar/issues/125 | ||
'python-keyczar; python_version=="2.7"', | ||
] | ||
|
||
|
@@ -57,24 +55,18 @@ doc = [ | |
# local | ||
] | ||
|
||
check = [ | ||
"pytest-checkdocs >= 2.4", | ||
"pytest-ruff >= 0.2.1; sys_platform != 'cygwin'", | ||
] | ||
check = ["pytest-checkdocs >= 2.4", "pytest-ruff >= 0.2.1; sys_platform != 'cygwin'"] | ||
|
||
cover = [ | ||
"pytest-cov", | ||
] | ||
cover = ["pytest-cov"] | ||
|
||
enabler = [ | ||
"pytest-enabler >= 2.2", | ||
] | ||
enabler = ["pytest-enabler >= 2.2"] | ||
|
||
type = [ | ||
# upstream | ||
"pytest-mypy", | ||
|
||
# local | ||
"PyGObject-stubs", | ||
] | ||
|
||
|
||
|
@@ -88,7 +80,3 @@ multi = "keyrings.alt.multi" | |
|
||
|
||
[tool.setuptools_scm] | ||
|
||
|
||
[tool.pytest-enabler.mypy] | ||
# Disabled due to jaraco/skeleton#143 |
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