forked from twillis/pyramid_appengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'readme.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
version = "0.1"
requires = ["pastescript", 'pyramid==1.3']
setup(name='pj_pyramid_appengine',
version=version,
description="Scaffold + Tools for creating/developing pyramid applications with pyjamas 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 :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
],
keywords='web pyramid pylons google-app-engine pyjamas',
author='Tom Willis, Jim Washington',
author_email='[email protected], [email protected]',
url='https://github.com/jwashin/pj_pyramid_appengine',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points="""
[pyramid.scaffold]
pj_appengine_starter=pj_pyramid_appengine.scaffolds:PyramidAppEngineStarterTemplate
""",
)