-
Notifications
You must be signed in to change notification settings - Fork 798
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix static typing issue & turn on mypy+pyright in adodbapi (#2279)
- Loading branch information
Showing
5 changed files
with
32 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,20 +3,6 @@ | |
Adodbapi can be run on CPython 3.5 and later. | ||
""" | ||
|
||
CLASSIFIERS = """\ | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) | ||
Operating System :: Microsoft :: Windows | ||
Operating System :: POSIX :: Linux | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: SQL | ||
Topic :: Software Development | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
Topic :: Database | ||
""" | ||
|
||
NAME = "adodbapi" | ||
MAINTAINER = "Vernon Cole" | ||
MAINTAINER_EMAIL = "[email protected]" | ||
|
@@ -25,7 +11,19 @@ | |
) | ||
URL = "http://sourceforge.net/projects/adodbapi" | ||
LICENSE = "LGPL" | ||
CLASSIFIERS = filter(None, CLASSIFIERS.split("\n")) | ||
CLASSIFIERS = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: SQL", | ||
"Topic :: Software Development", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Database", | ||
] | ||
AUTHOR = "Henrik Ekelund, Vernon Cole, et.al." | ||
AUTHOR_EMAIL = "[email protected]" | ||
PLATFORMS = ["Windows", "Linux"] | ||
|
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