Skip to content

Commit 24dc450

Browse files
author
Thomas Hanke
committed
added Manifest
1 parent e63a3e0 commit 24dc450

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include README.rst
2+
include LICENSE
3+
include requirements.txt
4+
recursive-include ckanext *.html *.json *.js *.less *.css *.mo

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[metadata]
22
name = ckanext-sso
3+
version = 0.0.1
4+
description = An extension for authentication with OIDC/Keycloak
35
long_description = file: README.md
46
long_description_content_type = text/markdown
57
url = https://github.com/Mat-O-Lab/ckanext-sso

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,13 @@
4545
],
4646
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
4747
# What does your project relate to?
48+
namespace_packages=["ckanext"],
4849
keywords="""CKAN SSO OIDC""",
4950
entry_points="""
5051
[ckan.plugins]
5152
sso=ckanext.sso.plugin:SSOPlugin
5253
[babel.extractors]
53-
ckan = ckan.lib.extract:extract_ckan
54+
ckan=ckan.lib.extract:extract_ckan
5455
""",
5556
message_extractors={
5657
"ckanext": [

0 commit comments

Comments
 (0)