Skip to content

Commit

Permalink
Use find_packages instead of manually specifying to avoid missing pac…
Browse files Browse the repository at this point in the history
…kages
  • Loading branch information
mschwager committed Oct 18, 2018
1 parent 2c90142 commit 7ad5eee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from setuptools import setup
from setuptools import (
find_packages,
setup,
)

import os
import sys
Expand Down Expand Up @@ -34,10 +37,7 @@
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/mschwager/gitem',
packages=[
'gitem',
'gitem.output',
],
packages=find_packages(where=PACKAGE_DIRECTORY),
package_dir={'': PACKAGE_DIRECTORY},
license='GPLv3',
classifiers=[
Expand Down

0 comments on commit 7ad5eee

Please sign in to comment.