-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
import sys, os
version = '2.1a'
setup(
name='ckanext-berlin',
version=version,
description="Berlin Open Data Portal CKAN extension (custom theme and dataset form)",
long_description="""\
Contains all customisation for the Berlin Open Data Portal backend (datenregister.berlin.de).
This includes interface customisations (custom page templates, icons, css) and a custom
dataset form aimed at the administration staff of the various Berlin departments and
administrative offices.
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Knud M\xc3\xb6ller',
author_email='knud@datalysator.com',
url='https://github.com/berlinonline/ckanext-berlin',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext', 'ckanext.berlin'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points=\
"""
[ckan.plugins]
berlin=ckanext.berlin.plugin:BerlinPlugin
""",
)