-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (26 loc) · 901 Bytes
/
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
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from distutils.core import setup
setup(name='klupung',
version='0.1.0',
description='Klupu Next Generation',
long_description="Open Ahjo -compatible RESTful HTTP API server",
author='Koodilehto Osk',
author_email='klupung@koodilehto.fi',
license='AGPLv3+',
packages=['klupung', 'klupung.flask'],
scripts=[
"bin/klupung-dbimport-categories",
"bin/klupung-dbimport-ktweb",
"bin/klupung-dbimport-ktweb-geometries",
"bin/klupung-dbimport-policymakers",
"bin/klupung-dbinit",
"bin/klupung-download-ktweb",
"bin/klupung-stupid-apiserver",
"bin/klupung-geocode-ktweb",
],
platforms=['Linux'],
url="http://koodilehto.fi/projects/klupung",
)