# Copyright 2017 Lars Wirzenius from distutils.core import setup import apifw setup( name='apifw', version=apifw.__version__, author='Lars Wirzenius', author_email='liw@liw.fi', url='http://liw.fi/apifw/', description='Python framework for RESTful JSON API backends', long_description='''\ This package contains the Python module apifw, which implements a small framework for implemnting backends with a RESTful JSON HTTP API. ''', packages=['apifw'], )