diff options
| author | Michael Merickel <michael@merickel.org> | 2018-10-31 01:46:25 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2018-10-31 01:46:25 -0500 |
| commit | 4aa2eb5f970b812a96480e2cd7c18c1103b844c8 (patch) | |
| tree | eb1406080661b3cf8b5b3ad2935992863b654f00 /tests/test_scaffolds/fixture_scaffold/setup.py_tmpl | |
| parent | 26ff2bf625f426f90abb313e9e028fc16308d105 (diff) | |
| download | pyramid-4aa2eb5f970b812a96480e2cd7c18c1103b844c8.tar.gz pyramid-4aa2eb5f970b812a96480e2cd7c18c1103b844c8.tar.bz2 pyramid-4aa2eb5f970b812a96480e2cd7c18c1103b844c8.zip | |
initial work removing pcreate
Diffstat (limited to 'tests/test_scaffolds/fixture_scaffold/setup.py_tmpl')
| -rw-r--r-- | tests/test_scaffolds/fixture_scaffold/setup.py_tmpl | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/tests/test_scaffolds/fixture_scaffold/setup.py_tmpl b/tests/test_scaffolds/fixture_scaffold/setup.py_tmpl deleted file mode 100644 index ee9fd5fda..000000000 --- a/tests/test_scaffolds/fixture_scaffold/setup.py_tmpl +++ /dev/null @@ -1,38 +0,0 @@ -import os - -from setuptools import setup, find_packages - -here = os.path.abspath(os.path.dirname(__file__)) -with open(os.path.join(here, 'README.txt')) as f: - README = f.read() -with open(os.path.join(here, 'CHANGES.txt')) as f: - CHANGES = f.read() - -requires = ['pyramid', 'pyramid_debugtoolbar'] - -setup(name='{{project}}', - version='0.0', - description='{{project}}', - 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="{{package}}", - entry_points = """\ - [paste.app_factory] - main = {{package}}:main - """, - ) - |
