2014-09-02 17:52:55 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2014 CoNWeT Lab., Universidad Politécnica de Madrid
# This file is part of CKAN Private Dataset Extension.
# CKAN Private Dataset Extension is free software: you can redistribute it and/or
# modify it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# CKAN Private Dataset Extension is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with CKAN Private Dataset Extension. If not, see <http://www.gnu.org/licenses/>.
2014-06-23 17:25:37 +02:00
from setuptools import setup , find_packages
import sys , os
2014-10-21 17:40:25 +02:00
version = ' 0.2.7 '
2014-06-23 17:25:37 +02:00
setup (
name = ' ckanext-privatedatasets ' ,
version = version ,
2014-07-08 15:40:27 +02:00
description = " This extensions allows users to create private datasets only visible to certain users. The extension provides also an API to specify programatically which users can access private datasets " ,
2014-06-23 17:25:37 +02:00
long_description = '''
''' ,
classifiers = [ ] , # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords = ' ' ,
author = ' Aitor Magan ' ,
author_email = ' amagan@conwet.com ' ,
url = ' ' ,
license = ' ' ,
packages = find_packages ( exclude = [ ' ez_setup ' , ' examples ' , ' tests ' ] ) ,
namespace_packages = [ ' ckanext ' , ' ckanext.privatedatasets ' ] ,
include_package_data = True ,
zip_safe = False ,
install_requires = [
# -*- Extra requirements: -*-
] ,
entry_points = '''
[ ckan . plugins ]
# Add plugins here, e.g.
privatedatasets = ckanext . privatedatasets . plugin : PrivateDatasets
''' ,
)