Browse Source

Add a fastimport 'extra'.

Jelmer Vernooij 7 years ago
parent
commit
44814e805a
2 changed files with 7 additions and 0 deletions
  1. 4 0
      NEWS
  2. 3 0
      setup.py

+ 4 - 0
NEWS

@@ -9,6 +9,10 @@
   * Allow comment characters (#, ;) within configuration file strings
     (Daniel Andersson, #579)
 
+ IMPROVEMENTS
+
+  * Add a fastimport ``extra``. (Jelmer Vernooij)
+
 0.18.6	2017-11-11
 
  BUG FIXES

+ 3 - 0
setup.py

@@ -109,6 +109,9 @@ setup(name='dulwich',
           'Operating System :: Microsoft :: Windows',
           'Topic :: Software Development :: Version Control',
       ],
+      extras_require={
+          'fastimport': ['fastimport'],
+      },
       ext_modules=ext_modules,
       test_suite='dulwich.tests.test_suite',
       tests_require=tests_require,