diff options
| author | Chris McDonough <chrism@plope.com> | 2010-10-25 17:40:43 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-10-25 17:40:43 -0400 |
| commit | e53e13423685eac190676c4be32716c3a42603e4 (patch) | |
| tree | a28909e6aa70ed35977d4fa7e7af8ce6e0cb7332 /docs/tutorials/wiki/src/basiclayout/setup.py | |
| parent | ae8e4ad63449212da28c6a169c36aac54ed38a9e (diff) | |
| download | pyramid-e53e13423685eac190676c4be32716c3a42603e4.tar.gz pyramid-e53e13423685eac190676c4be32716c3a42603e4.tar.bz2 pyramid-e53e13423685eac190676c4be32716c3a42603e4.zip | |
rename bfgwiki to wiki
Diffstat (limited to 'docs/tutorials/wiki/src/basiclayout/setup.py')
| -rw-r--r-- | docs/tutorials/wiki/src/basiclayout/setup.py | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/docs/tutorials/wiki/src/basiclayout/setup.py b/docs/tutorials/wiki/src/basiclayout/setup.py new file mode 100644 index 000000000..f4a011c7e --- /dev/null +++ b/docs/tutorials/wiki/src/basiclayout/setup.py @@ -0,0 +1,42 @@ +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', + 'docutils', + 'ZODB3', + 'repoze.zodbconn', + 'repoze.tm', + ] + +setup(name='tutorial', + version='0.0', + description='tutorial', + long_description=README + '\n\n' + CHANGES, + classifiers=[ + "Intended Audience :: Developers", + "Framework :: Pylons", + "Programming Language :: Python", + "Topic :: Internet :: WWW/HTTP", + "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", + ], + author='', + author_email='', + url='', + keywords='web wsgi pylons pyramid bfg', + packages=find_packages(), + include_package_data=True, + zip_safe=False, + install_requires=requires, + tests_require=requires, + test_suite="tutorial", + entry_points = """\ + [paste.app_factory] + app = tutorial.run:app + """ + ) |
