diff options
Diffstat (limited to 'repoze/bfg/paster_templates/zodb/setup.py_tmpl')
| -rw-r--r-- | repoze/bfg/paster_templates/zodb/setup.py_tmpl | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/repoze/bfg/paster_templates/zodb/setup.py_tmpl b/repoze/bfg/paster_templates/zodb/setup.py_tmpl new file mode 100644 index 000000000..b4308c301 --- /dev/null +++ b/repoze/bfg/paster_templates/zodb/setup.py_tmpl @@ -0,0 +1,46 @@ +import os + +from ez_setup import use_setuptools +use_setuptools() + +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() + +setup(name='{{project}}', + version='0.1', + description='{{project}}', + long_description=README + '\n\n' + CHANGES, + classifiers=[ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Programming Language :: Python", + "Topic :: Internet :: WWW/HTTP", + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", + "Topic :: Internet :: WWW/HTTP :: WSGI", + "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", + ], + author='', + author_email='', + url='', + keywords='web wsgi bfg zope', + packages=find_packages(), + include_package_data=True, + zip_safe=False, + install_requires=[ + 'repoze.bfg', + 'repoze.zodbconn', + 'ZODB3', + ], + tests_require=[ + 'repoze.bfg', + ], + test_suite="{{package}}", + entry_points = """\ + [paste.app_factory] + app = {{package}}.run:app + """ + ) + |
