Skip to content

Commit 4ed1938

Browse files
committed
setup readme fix
1 parent 55c2264 commit 4ed1938

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,20 @@
33

44
# long_description
55
readme_path = "./README.md"
6-
with open(readme_path, 'rb') as read_file:
7-
long_description = read_file.read()
6+
long_description = open(readme_path, 'r').read()
87

98
setup(
109
name = 'moon',
1110
packages = find_packages(),
12-
version = '1.0',
11+
version = '1.0.0',
1312
license='MIT',
1413
description = 'Gets moon visualizations courtesy of NASA/Ernie Wright',
1514
long_description_content_type="text/markdown",
1615
long_description = long_description,
1716
author = 'Sadie Parker',
1817
author_email = '[email protected]',
1918
url = 'https://github.com/spacerest/moon',
20-
download_url = 'https://github.com/spacerest/moon/archive/v_1_0.tar.gz',
19+
download_url = 'https://github.com/spacerest/moon/archive/v_1_0_0.tar.gz',
2120
keywords = ['MOON', 'ART'],
2221
install_requires=[
2322
'numpy~=1.16',

0 commit comments

Comments
 (0)