summaryrefslogtreecommitdiff
path: root/setup.py
blob: d734841d2d118caa57d39859a4568dc5d94aef40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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'],
)