diff options
| author | Paul Everitt <paul@agendaless.com> | 2013-08-06 10:12:42 -0400 |
|---|---|---|
| committer | Paul Everitt <paul@agendaless.com> | 2013-08-06 10:12:42 -0400 |
| commit | 71b83e5ea328b654f8463f567ecc054a55a7a90b (patch) | |
| tree | 7ba977a3592446142d5c4ea180d7b71bc2f31dbc /docs/getting_started/quick_glance/package/setup.py | |
| parent | c3e696a0cfb839c97e6c20277dc797dbd5349730 (diff) | |
| download | pyramid-71b83e5ea328b654f8463f567ecc054a55a7a90b.tar.gz pyramid-71b83e5ea328b654f8463f567ecc054a55a7a90b.tar.bz2 pyramid-71b83e5ea328b654f8463f567ecc054a55a7a90b.zip | |
Move sample code into subdirectories. Add sections for requests and views.
Diffstat (limited to 'docs/getting_started/quick_glance/package/setup.py')
| -rw-r--r-- | docs/getting_started/quick_glance/package/setup.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/docs/getting_started/quick_glance/package/setup.py b/docs/getting_started/quick_glance/package/setup.py new file mode 100644 index 000000000..6269accf1 --- /dev/null +++ b/docs/getting_started/quick_glance/package/setup.py @@ -0,0 +1,39 @@ +import os + +from setuptools import setup, find_packages + +here = os.path.abspath(os.path.dirname(__file__)) +README = open(os.path.join(here, 'README.txt')).read() +CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() + +requires = ['pyramid>=1.0.2', 'pyramid_jinja2', 'pyramid_debugtoolbar'] + +setup(name='hello_world', + version='0.0', + description='hello_world', + long_description=README + '\n\n' + CHANGES, + classifiers=[ + "Programming Language :: Python", + "Framework :: Pylons", + "Topic :: Internet :: WWW/HTTP", + "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", + ], + author='', + author_email='', + url='', + keywords='web pyramid pylons', + packages=find_packages(), + include_package_data=True, + zip_safe=False, + install_requires=requires, + tests_require=requires, + test_suite="hello_world", + entry_points="""\ + [paste.app_factory] + main = hello_world:main + """, + paster_plugins=['pyramid'], + extras_require={ + 'testing': ['nose', ], + } +)
\ No newline at end of file |
