[tor-commits] [stem/master] Shorten setup.py description and drop provides clause

atagar at torproject.org atagar at torproject.org
Thu May 28 17:01:51 UTC 2015


commit 7c0ed74d5f36bb6700344340adc37ee30aaf7fb7
Author: Damian Johnson <atagar at torproject.org>
Date:   Thu May 28 08:21:22 2015 -0700

    Shorten setup.py description and drop provides clause
    
    Took a look at Sphinx's setup.py to see if we could learn anything. Not
    terribly much, but encouraged me to make a briefer description and looks as
    though the provides clause is optional.
---
 setup.py |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index 4d0df77..9784441 100644
--- a/setup.py
+++ b/setup.py
@@ -9,13 +9,12 @@ import stem
 distutils.core.setup(
   name = 'stem',
   version = stem.__version__,
-  description = "Python controller library that allows applications to interact with Tor <https://www.torproject.org/>.",
+  description = 'Controller library for interacting with Tor <https://www.torproject.org/>',
   license = stem.__license__,
   author = stem.__author__,
   author_email = stem.__contact__,
   url = stem.__url__,
   packages = ['stem', 'stem.descriptor', 'stem.interpreter', 'stem.response', 'stem.util'],
-  provides = ['stem'],
   keywords = 'tor onion controller',
   scripts = ['tor-prompt'],
   package_data = {'stem.interpreter': ['settings.cfg'], 'stem.util': ['ports.cfg']},





More information about the tor-commits mailing list