Skip to content

Commit

Permalink
fix finding packages in setup.py (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
classabbyamp authored Sep 28, 2021
1 parent e1af78d commit d4fa15c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


## [1.0.1] - 2021-09-27
### Fixed
- Packaging issue.


## [1.0.0] - 2021-09-27
### Added
- Support for QRZ lookup.
Expand All @@ -18,5 +23,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Command-line interface.


[Unreleased]: https://github.com/miaowware/callsignlookuptools/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/miaowware/callsignlookuptools/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/miaowware/callsignlookuptools/releases/tag/v1.0.1
[1.0.0]: https://github.com/miaowware/callsignlookuptools/releases/tag/v1.0.0
2 changes: 1 addition & 1 deletion callsignlookuptools/__info__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__summary__ = "QRZ, Callook, HamQTH, and QRZCQ API interface with sync and async support"
__webpage__ = "https://callsignlookuptools.miaow.io"

__version__ = "1.0.0"
__version__ = "1.0.1"

__author__ = "classabbyamp, 0x5c"
__email__ = "[email protected], [email protected]"
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pathlib
from setuptools import setup # type: ignore
from setuptools import setup, find_packages # type: ignore
import callsignlookuptools.__info__ as info

# The directory containing this file
Expand Down Expand Up @@ -29,7 +29,7 @@
"Topic :: Communications :: Ham Radio",
"Framework :: AsyncIO",
],
packages=["callsignlookuptools"],
packages=find_packages(exclude=["tests", "docs"]),
package_data={
"callsignlookuptools": ["py.typed"]
},
Expand All @@ -43,5 +43,6 @@
"cli": ["typer[all]", "click-help-colors"],
"async": ["aiohttp"],
"all": ["aiohttp"]
}
},
python_requires=">=3.9",
)

0 comments on commit d4fa15c

Please sign in to comment.