File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 33
44# long_description
55readme_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
98setup (
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' ,
You can’t perform that action at this time.
0 commit comments