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 --- setup.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e33dcdf2d..272357295 100644 --- a/setup.py +++ b/setup.py @@ -110,14 +110,9 @@ setup( tests_require=tests_require, test_suite="tests", entry_points="""\ - [pyramid.scaffold] - starter=pyramid.scaffolds:StarterProjectTemplate - zodb=pyramid.scaffolds:ZODBProjectTemplate - alchemy=pyramid.scaffolds:AlchemyProjectTemplate [pyramid.pshell_runner] python=pyramid.scripts.pshell:python_shell_runner [console_scripts] - pcreate = pyramid.scripts.pcreate:main pserve = pyramid.scripts.pserve:main pshell = pyramid.scripts.pshell:main proutes = pyramid.scripts.proutes:main -- cgit v1.2.3 From 63ef63cfa546d92988490fb8678c7d9ffd0aed31 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Wed, 31 Oct 2018 01:57:34 -0500 Subject: no longer need virtualenv --- setup.py | 1 - 1 file changed, 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 272357295..5d1460432 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,6 @@ docs_extras = [ testing_extras = tests_require + [ 'coverage', 'nose', - 'virtualenv', # for scaffolding tests ] base_version = parse_version(VERSION).base_version -- cgit v1.2.3 From bd874fa27387b5a4b39bfe5a124719b4b202bfff Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Wed, 31 Oct 2018 02:18:56 -0500 Subject: blackify --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 5d1460432..0143764b8 100644 --- a/setup.py +++ b/setup.py @@ -52,10 +52,7 @@ docs_extras = [ 'sphinxcontrib-autoprogram', ] -testing_extras = tests_require + [ - 'coverage', - 'nose', -] +testing_extras = tests_require + ['coverage', 'nose'] base_version = parse_version(VERSION).base_version -- cgit v1.2.3