1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: Stefano Rivera <stefanor@debian.org>
Date: Thu, 8 Oct 2015 10:29:39 -0700
Subject: Don't install setuptools entry point scripts.
We have our own command line wrapper.
Forwarded: not-needed
Last-Update: 2014-07-27
---
setup.py | 5 -----
1 file changed, 5 deletions(-)
diff --git a/setup.py b/setup.py
index dc9ec84..9dfa4c8 100755
--- a/setup.py
+++ b/setup.py
@@ -47,9 +47,4 @@ setup(
author_email='p@pwaller.net',
url='https://github.com/pwaller/pyfiglet',
packages=['pyfiglet', 'pyfiglet.fonts'],
- entry_points={
- 'console_scripts': [
- 'pyfiglet = pyfiglet:main',
- ],
- }
)
|