diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-11-26 09:29:17 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-11-26 09:29:28 +0100 |
commit | 123defb4a17b5c655979805147836f54c7aadaa3 (patch) | |
tree | ca52da6fd415129da9ff1f6d99145a3c44c706e3 | |
parent | b4c3929a64d1400a120f426c885565461b30feaf (diff) | |
download | gemato-123defb4a17b5c655979805147836f54c7aadaa3.tar.gz |
Switch to setuptools and specify the deps
-rw-r--r-- | setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -3,7 +3,7 @@ # (C) 2017 Michał Górny <mgorny@gentoo.org> # Licensed under the terms of 2-clause BSD license -from distutils.core import setup +from setuptools import setup setup( @@ -13,6 +13,13 @@ setup( author_email='mgorny@gentoo.org', url='http://github.com/mgorny/gemato', + extras_require={ + 'blake2': ['pyblake2;python_version<"3.6"'], + 'bz2': ['bz2file;python_version<"3.0"'], + 'lzma': ['backports.lzma;python_version<"3.0"'], + 'sha3': ['pysha3;python_version<"3.6"'], + }, + packages=['gemato'], scripts=['bin/gemato'], |