Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Commit

Permalink
add setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Justas Azna committed Jan 24, 2014
1 parent a1325d2 commit 89804b5
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include LICENSE.rst
include README.rst
28 changes: 28 additions & 0 deletions setup.py
@@ -0,0 +1,28 @@
from setuptools import setup, find_packages

version = '0.1'

setup(
name='ckanext-realtime',
version=version,
description="CKAN extension which enables CKAN to serve realtime data",
long_description=open('README.rst').read(),
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Justas Azna',
author_email='justas.azna@gmail.dk',
url='',
license='AGPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext', 'ckanext.realtime'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points=\
"""
[ckan.plugins]
realtime=ckanext.realtime.plugin:RealtimePlugin
""",
)

0 comments on commit 89804b5

Please sign in to comment.