forked from rhasspy/wyoming-satellite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5088b59
commit bd9de77
Showing
3 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changelog | ||
|
||
## 1.1.1 | ||
|
||
- Bump to wyoming 1.5.2 (package fix) | ||
|
||
## 1.1.0 | ||
|
||
- Bump to wyoming 1.5.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
include requirements.txt | ||
include VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,9 @@ | |
from setuptools import setup | ||
|
||
this_dir = Path(__file__).parent | ||
version = ( | ||
(this_dir / "wyoming_satellite" / "VERSION").read_text(encoding="utf-8").strip() | ||
) | ||
module_dir = this_dir / "wyoming_satellite" | ||
version_path = module_dir / "VERSION" | ||
version = version_path.read_text(encoding="utf-8").strip() | ||
|
||
|
||
def get_requirements(req_path: Path) -> List[str]: | ||
|
@@ -44,6 +44,9 @@ def get_requirements(req_path: Path) -> List[str]: | |
author="Michael Hansen", | ||
author_email="[email protected]", | ||
packages=setuptools.find_packages(), | ||
package_data={ | ||
"wyoming_satellite": [str(p.relative_to(module_dir)) for p in (version_path,)] | ||
}, | ||
install_requires=install_requires, | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
|