Skip to content

Commit

Permalink
setup: use find_packages()
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatsh committed Sep 15, 2020
1 parent 2c21a9f commit a5bdd96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Module for macprefs."""
from setuptools import setup
from setuptools import find_packages, setup

setup(
author='Andrew Udvare',
Expand All @@ -10,7 +10,7 @@
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
name='macprefs',
packages=['macprefs'],
packages=find_packages(),
tests_require=['coveralls', 'nose', 'requests-mock'],
url='https://github.com/Tatsh/macprefs',
version='0.0.2')

0 comments on commit a5bdd96

Please sign in to comment.