forked from mekarpeles/waltz-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (36 loc) · 809 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·41 lines (36 loc) · 809 Bytes
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
35
36
37
38
39
40
41
#-*- coding: utf-8 -*-
"""
waltz
~~~~~
Setup
`````
$ pip install waltz
"""
from distutils.core import setup
setup(
name='waltz',
version='0.1.4',
url='http://github.com/mekarpeles/waltz',
author='mek',
author_email='michael.karpeles@gmail.com',
packages=[
'waltz',
'waltz.ballroom',
'waltz.configs',
'waltz.templates',
'waltz.subapps',
'waltz.routes',
'waltz.test'
],
platforms='any',
scripts=[],
license='LICENSE',
install_requires=[
'lazydb >= 0.1.6',
'web.py >= 0.36',
'lepl >= 5.1.3',
'nose >= 1.1.2'
],
description="Waltz is a web.py framework for designing web apps in 3/4 time.",
long_description=open('README.md').read(),
)