Browse Source

Clarify 'pure-python'.

Jelmer Vernooij 14 years ago
parent
commit
e3b4c0ae4f
1 changed files with 5 additions and 2 deletions
  1. 5 2
      setup.py

+ 5 - 2
setup.py

@@ -34,7 +34,7 @@ class DulwichDistribution(Distribution):
 
 
         
         
 setup(name='dulwich',
 setup(name='dulwich',
-      description='Pure-Python Git Library',
+      description='Python Git Library',
       keywords='git',
       keywords='git',
       version=dulwich_version_string,
       version=dulwich_version_string,
       url='http://samba.org/~jelmer/dulwich',
       url='http://samba.org/~jelmer/dulwich',
@@ -43,9 +43,12 @@ setup(name='dulwich',
       author='Jelmer Vernooij',
       author='Jelmer Vernooij',
       author_email='jelmer@samba.org',
       author_email='jelmer@samba.org',
       long_description="""
       long_description="""
-      Simple Pure-Python implementation of the Git file formats and
+      Simple Python implementation of the Git file formats and
       protocols. Dulwich is the place where Mr. and Mrs. Git live
       protocols. Dulwich is the place where Mr. and Mrs. Git live
       in one of the Monty Python sketches.
       in one of the Monty Python sketches.
+
+      All functionality is available in pure Python, but (optional)
+      C extensions are also available for better performance.
       """,
       """,
       packages=['dulwich', 'dulwich.tests'],
       packages=['dulwich', 'dulwich.tests'],
       scripts=['bin/dulwich', 'bin/dul-daemon', 'bin/dul-web'],
       scripts=['bin/dulwich', 'bin/dul-daemon', 'bin/dul-web'],