Skip to content

Commit

Permalink
fix: use find_packages in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Caceresenzo committed Mar 28, 2023
1 parent da2570c commit 4cc7e69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crunch_cli/__version__.py
Original file line number Diff line number Diff line change
@@ -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__ = '[email protected]'
__url__ = 'https://github.com/crunchdao/crunch-cli'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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__))
Expand All @@ -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,
Expand Down

0 comments on commit 4cc7e69

Please sign in to comment.