-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 1.1 KB
/
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
from setuptools import setup, find_packages
DESCRIPTION = 'Converts `google.appengine.ext.ndb.Model` into HTTP endpoints'
LONG_DESCRIPTION = """This project converts a `google.appengine.ext.ndb.Model`
into a HTTP endpoints. It provides validation, routing, documentation, and
CRUD server endpoints. Its purpose is to act as a "DSL" for Google App Engine,
allowing you to quickly write CRUD servers with just a `ndb.Model`."""
setup(
name='gaend',
version='1.0.0.dev14',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url='https://github.com/samedhi/gaend',
author='Stephen Cagle',
author_email='samedhi@gmail.com',
license='MIT',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'],
packages=find_packages(exclude=['tests']),
install_requires=['Flask>=0.11',
'python-dateutil>=2.6',
'elasticsearch>=5.0.0'],
include_package_data=True,
zip_safe=False,
)