diff options
| author | Chris McDonough <chrism@plope.com> | 2010-10-25 17:58:23 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-10-25 17:58:23 -0400 |
| commit | c426c49cd433997aac10045052d77d9c749680b2 (patch) | |
| tree | 4dc3c7664ad9492b80771eb9c55fa0d2bfe22162 /docs/tutorials/bfgwiki2/src/views/setup.py | |
| parent | e26700528995b1807c5e55a4295a6f788a5603de (diff) | |
| download | pyramid-c426c49cd433997aac10045052d77d9c749680b2.tar.gz pyramid-c426c49cd433997aac10045052d77d9c749680b2.tar.bz2 pyramid-c426c49cd433997aac10045052d77d9c749680b2.zip | |
remove bfgwiki2 old dir
Diffstat (limited to 'docs/tutorials/bfgwiki2/src/views/setup.py')
| -rw-r--r-- | docs/tutorials/bfgwiki2/src/views/setup.py | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/docs/tutorials/bfgwiki2/src/views/setup.py b/docs/tutorials/bfgwiki2/src/views/setup.py deleted file mode 100644 index 764e8c0ea..000000000 --- a/docs/tutorials/bfgwiki2/src/views/setup.py +++ /dev/null @@ -1,46 +0,0 @@ -import os -import sys - -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 = [ - 'repoze.bfg', - 'SQLAlchemy', - 'transaction', - 'repoze.tm2', - 'zope.sqlalchemy', - 'docutils' - ] - -if sys.version_info[:3] < (2,5,0): - requires.append('pysqlite') - -setup(name='tutorial', - version='0.0', - description='tutorial', - long_description=README + '\n\n' + CHANGES, - classifiers=[ - "Programming Language :: Python", - "Framework :: BFG", - "Topic :: Internet :: WWW/HTTP", - "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", - ], - author='', - author_email='', - url='', - keywords='web wsgi bfg', - packages=find_packages(), - include_package_data=True, - zip_safe=False, - test_suite='tutorial', - install_requires = requires, - entry_points = """\ - [paste.app_factory] - app = tutorial.run:app - """ - ) - |
