Skip to content

Commit

Permalink
Use setuptools.find_packages()
Browse files Browse the repository at this point in the history
  • Loading branch information
erik committed Jan 4, 2019
1 parent 3156991 commit 729d9ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import os.path

from setuptools import setup
from setuptools import setup, find_packages

__version__ = '1.0.0rc3'
__version__ = '1.0.0rc4'


readme_path = os.path.join(os.path.dirname(__file__), 'README.rst')
Expand All @@ -16,7 +16,7 @@
long_description=long_description,
author='Erik Price',
url='https://github.com/erik/squabble',
packages=['squabble'],
packages=find_packages(),
entry_points={
'console_scripts': [
'squabble = squabble.__main__:main',
Expand Down

0 comments on commit 729d9ca

Please sign in to comment.