1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Explicitly set packages field for right file
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2022-09-24
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
not, see <http://www.gnu.org/licenses/>.
"""
-from setuptools import setup
+from setuptools import setup, find_packages
with open('README.md', 'rb') as readme:
long_description = readme.read()
@@ -27,6 +27,7 @@
setup(name='Kaptive',
version=__version__,
+ packages=find_packages(),
description='K and O locus typing for Klebsiella assemblies',
long_description=long_description,
url='http://github.com/katholt/Kaptive',
|