-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 734 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 734 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
setup(name="webapp-enhanced",
version="1.0.2",
author="Daniel Watson",
author_email="watsondaniel6@gmail.com",
url="https://github.com/djwatt5/webapp-enhanced",
license="MIT",
description="Enhanced library for Google App Engine",
long_description="""Webapp Enhanced is a library meant to improve web development in Google App Engine.
The key elements in Webapp Enhanced are: RESTful methods, an MVC architecture, and
scripts with code templates ready to generate.""",
include_package_data=True,
scripts=['src/we'],
packages=['static'],
package_dir={'static':'src/static'},
package_data={
'static': ['*.*'],
},
)