Skip to content

Commit

Permalink
1.6.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
cyschneck committed May 29, 2024
1 parent 24c46b8 commit 8fbf890
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ A Python package to generate circular astronomy star charts (past, present, and
* **Return Final Position of Stars**
* finalPositionOfStars()
* starPositionOverTime()
* plotStarPositionOverTime()
* predictPoleStar()
* **Add a New Star to Plot**
* newStar()
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
beautifulsoup4>=4.11.1
matplotlib>=3.1.0
numpy>=1.24.3
pandas>=1.3.5
pytest>=7.2.2
beautifulsoup4
matplotlib
numpy
pandas
pytest
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Python Package Setup
from setuptools import setup, find_namespace_packages

VERSION="1.5.0"
VERSION="1.6.0"
DESCRIPTION="A Python package to generate circular astronomy star charts (past, present, and future) with spherical projection to correct for distortions with more than a hundred named stars accurate over 400,000 years with proper motion and precession of the equinoxes"

with open("README.md", "r") as f:
Expand Down Expand Up @@ -41,11 +41,11 @@
'star_chart_spherical_projection.*']),
include_package_data=True,
install_requires=[
"beautifulsoup4>=4.11.1",
"matplotlib>=3.1.0",
"numpy>=1.24.3",
"pandas>=1.3.5",
"pytest>=7.2.2"
"beautifulsoup4",
"matplotlib",
"numpy",
"pandas",
"pytest"
],
python_requires='>=3.9'
)

0 comments on commit 8fbf890

Please sign in to comment.