Skip to content

Commit

Permalink
Use find_packages() (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersy005 authored Dec 17, 2021
1 parent 40b23fd commit 282edf2
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
Expand Up @@ -4,7 +4,7 @@
"""The setup script."""


from setuptools import setup
from setuptools import setup, find_packages

with open('README.md') as f:
long_description = f.read()
Expand Down Expand Up @@ -35,7 +35,7 @@
long_description_content_type='text/markdown',
long_description=long_description,
name='xpersist',
packages=['xpersist'],
packages=find_packages(),
url='https://github.com/NCAR/xpersist',
project_urls={
'Documentation': 'https://github.com/NCAR/xpersist',
Expand Down

0 comments on commit 282edf2

Please sign in to comment.