Skip to content

Commit

Permalink
Merge pull request earthobservations#75 from earthobservations/small-ifx
Browse files Browse the repository at this point in the history
Modify setup script to find packages
  • Loading branch information
gutzbenj committed Jun 19, 2020
2 parents 77f2cab + 2f33561 commit 575c867
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

with open("README.md", 'r') as f:
long_description = f.read()
Expand All @@ -11,7 +11,7 @@
long_description=long_description,
author='Benjamin Gutzmann',
author_email='gutzemann@gmail.com',
packages=['python_dwd'], # , 'python_dwd.additionals'
packages=find_packages(),
install_requires=['pandas', 'pathlib',
'scipy', 'numpy'],
entry_points={
Expand Down

0 comments on commit 575c867

Please sign in to comment.