-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
a848d0c
commit e1204e6
Showing
2 changed files
with
43 additions
and
48 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,3 +1,46 @@ | ||
[build-system] | ||
requires = [ "setuptools",] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "ckanext-fdt-sqlalchemy" | ||
version = "0.0.2.post1" | ||
description = "Enable SQLAlchemy pane of Flask-DebugToolbar" | ||
classifiers = [ "Development Status :: 4 - Beta", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",] | ||
keywords = [ "CKAN SQL debug",] | ||
dependencies = [] | ||
authors = [ | ||
{name = "DataShades", email = "[email protected]"}, | ||
{name = "Sergey Motornyuk", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "DataShades", email = "[email protected]"}, | ||
] | ||
|
||
[project.readme] | ||
file = "README.md" | ||
content-type = "text/markdown" | ||
|
||
[project.license] | ||
text = "AGPL" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/ckan/ckanext-fdt-sqlalchemy" | ||
|
||
[project.optional-dependencies] | ||
deps = [ "flask-sqlalchemy~=2.5",] | ||
test = [ "pytest-ckan",] | ||
dev = [ "flask-sqlalchemy~=2.5", "pytest-ckan",] | ||
|
||
[project.entry-points."ckan.plugins"] | ||
fdt_sqlalchemy = "ckanext.fdt_sqlalchemy.plugin:FdtSqlalchemyPlugin" | ||
|
||
[project.entry-points."babel.extractors"] | ||
ckan = "ckan.lib.extract:extract_ckan" | ||
|
||
[tool.setuptools.packages] | ||
find = {} | ||
|
||
[tool.black] | ||
# line-length = 88 | ||
# preview = true | ||
|
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,44 +1,3 @@ | ||
[metadata] | ||
name = ckanext-fdt-sqlalchemy | ||
version = 0.0.2 | ||
description = Enable SQLAlchemy pane of Flask-DebugToolbar | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/ckan/ckanext-fdt-sqlalchemy | ||
author = Sergey Motornyuk | ||
author_email = [email protected] | ||
license = AGPL | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
keywords = CKAN SQL debug | ||
|
||
[options] | ||
packages = find: | ||
namespace_packages = ckanext | ||
install_requires = | ||
include_package_data = True | ||
|
||
[options.entry_points] | ||
ckan.plugins = | ||
fdt_sqlalchemy = ckanext.fdt_sqlalchemy.plugin:FdtSqlalchemyPlugin | ||
|
||
babel.extractors = | ||
ckan = ckan.lib.extract:extract_ckan | ||
|
||
[options.extras_require] | ||
deps = | ||
flask-sqlalchemy~=2.5 | ||
test = | ||
pytest-ckan | ||
|
||
dev = | ||
%(deps)s | ||
%(test)s | ||
|
||
[extract_messages] | ||
keywords = translate isPlural | ||
add_comments = TRANSLATORS: | ||
|
@@ -60,10 +19,3 @@ previous = true | |
domain = ckanext-fdt_sqlalchemy | ||
directory = ckanext/fdt_sqlalchemy/i18n | ||
statistics = true | ||
|
||
[tool:pytest] | ||
filterwarnings = | ||
ignore::sqlalchemy.exc.SADeprecationWarning | ||
ignore::sqlalchemy.exc.SAWarning | ||
ignore::DeprecationWarning | ||
addopts = --ckan-ini test.ini |