Skip to content

Commit

Permalink
fix packages (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewFlamm authored Mar 31, 2022
1 parent 9e4d05a commit 35c2a42
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,6 +1,6 @@
import os

from setuptools import setup
from setuptools import find_packages, setup

exec(open("pynws/version.py").read())

Expand All @@ -17,7 +17,7 @@
author="Matthew Flamm",
author_email="[email protected]",
description="Python library to retrieve observations and forecasts from NWS/NOAA",
packages=["pynws"],
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
install_requires=[
"aiohttp",
Expand Down

0 comments on commit 35c2a42

Please sign in to comment.