Skip to content

Commit

Permalink
wyoming 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
synesthesiam committed Jan 18, 2024
1 parent 5088b59 commit bd9de77
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
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
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include requirements.txt
include VERSION
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit bd9de77

Please sign in to comment.