-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
45 lines (41 loc) · 1.42 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ""
try:
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
CHANGES = ""
version = "0.8.5"
requires = ["pyramid"]
setup(name='pyramid_appengine',
version=version,
description="Scaffold + Tools for creating/developing pyramid applications on Google App Engine",
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
],
keywords='web pyramid pylons google-app-engine',
author='Tom Willis',
author_email='[email protected]',
url='https://github.com/twillis/pyramid_appengine',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points="""
# -*- Entry points: -*-
[pyramid.scaffold]
appengine_starter=pyramid_appengine.scaffolds:PyramidAppEngineStarterTemplate
""",
)