OSDN Git Service

Depend on dulwich and future.
authorSimon Forman <sforman@hushmail.com>
Sat, 25 Apr 2020 00:11:24 +0000 (17:11 -0700)
committerSimon Forman <sforman@hushmail.com>
Sat, 25 Apr 2020 00:11:24 +0000 (17:11 -0700)
setup.py

index e03a8bf..7eaadb3 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
 #    You should have received a copy of the GNU General Public License
 #    along with Thun.  If not see <http://www.gnu.org/licenses/>.
 #
-from distutils.core import setup
+from setuptools import setup
 from textwrap import dedent
 
 
@@ -44,4 +44,8 @@ setup(
                'Programming Language :: Other',
                'Topic :: Software Development :: Interpreters',
                ],
+       install_requires=[
+               'dulwich',
+               'future',
+               ]
        )