Skip to content

Commit 0559530

Browse files
authored
pypi fixes (#2)
* add dependencies * clean up
1 parent 05853a5 commit 0559530

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

README.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
**starplot** is a Python library for creating star charts and maps.
77

88
## Example
9-
![Example](examples/starchart-blue.png)
9+
![Example](https://raw.githubusercontent.com/steveberardi/starplot/main/examples/starchart-blue.png)
1010

1111
For more styles, check out the [examples](examples/).
1212

@@ -45,5 +45,23 @@ create_star_chart(
4545
- Documentation
4646

4747
## License
48-
[MIT](LICENSE)
48+
MIT License
49+
50+
Permission is hereby granted, free of charge, to any person obtaining a copy
51+
of this software and associated documentation files (the "Software"), to deal
52+
in the Software without restriction, including without limitation the rights
53+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
54+
copies of the Software, and to permit persons to whom the Software is
55+
furnished to do so, subject to the following conditions:
56+
57+
The above copyright notice and this permission notice shall be included in all
58+
copies or substantial portions of the Software.
59+
60+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
61+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
62+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
63+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
64+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
65+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
66+
SOFTWARE.
4967

pyproject.toml

+9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ classifiers = [
1717
"Programming Language :: Python :: 3.11",
1818
]
1919
dynamic = ["version", "description"]
20+
keywords = ["astronomy", "stars", "charts", "maps", "constellations"]
21+
dependencies = [
22+
"matplotlib >= 3.5.1",
23+
"numpy >= 1.22.1",
24+
"pandas >= 1.4.0",
25+
"pydantic >= 1.10.8",
26+
"skyfield >= 1.41",
27+
"adjustText >= 0.8",
28+
]
2029

2130
[project.urls]
2231
Home = "https://github.com/steveberardi/starplot"

requirements.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
matplotlib==3.5.1
2-
munch==2.5.0
3-
mypy-extensions==1.0.0
42
numpy==1.22.1
53
pandas==1.4.0
64
pydantic==1.10.8

0 commit comments

Comments
 (0)