From 4cc7e692f9625317329c66cdebd20be464c24266 Mon Sep 17 00:00:00 2001 From: Caceresenzo Date: Tue, 28 Mar 2023 12:54:55 +0200 Subject: [PATCH] fix: use `find_packages` in `setup.py` --- crunch_cli/__version__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crunch_cli/__version__.py b/crunch_cli/__version__.py index e2d2147..8f6f582 100644 --- a/crunch_cli/__version__.py +++ b/crunch_cli/__version__.py @@ -1,6 +1,6 @@ __title__ = 'crunch-cli' __description__ = 'crunch-cli - CLI of the CrunchDAO Platform' -__version__ = '0.2.0' +__version__ = '0.2.2' __author__ = 'Enzo CACERES' __author_email__ = 'enzo.caceres@crunchdao.com' __url__ = 'https://github.com/crunchdao/crunch-cli' diff --git a/setup.py b/setup.py index 753f82e..dde7fdb 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 import os -from setuptools import setup +from setuptools import setup, find_packages about = {} here = os.path.abspath(os.path.dirname(__file__)) @@ -23,7 +23,7 @@ author=about['__author__'], author_email=about['__author_email__'], url=about['__url__'], - packages=['crunch_cli'], + packages=find_packages(), include_package_data=True, python_requires=">=3", install_requires=requirements,