From 4aa2eb5f970b812a96480e2cd7c18c1103b844c8 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Wed, 31 Oct 2018 01:46:25 -0500 Subject: initial work removing pcreate --- .../test_scaffolds/fixture_scaffold/setup.py_tmpl | 38 ---------------------- 1 file changed, 38 deletions(-) delete mode 100644 tests/test_scaffolds/fixture_scaffold/setup.py_tmpl (limited to 'tests/test_scaffolds/fixture_scaffold/setup.py_tmpl') 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 - """, - ) - -- cgit v1.2.3