File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 11
2- __version__ = '0.3.0 '
2+ __version__ = '0.3.1 '
Original file line number Diff line number Diff line change 1+ from pathlib import Path
2+
13from setuptools import setup
24
35# Get version information from __init__.py. This is ugly, but more reliable than
46# using an import.
57with open ('openmc_plotter/__init__.py' , 'r' ) as f :
68 version = f .readlines ()[- 1 ].split ()[- 1 ].strip ("'" )
79
10+ # read the contents of your README file
11+ long_description = Path (__file__ ).with_name ("README.md" ).read_text ()
12+
813kwargs = {
914 'name' : 'openmc-plotter' ,
1015 'version' : version ,
2025 'author' : 'OpenMC Development Team' ,
2126 'author_email' : 'openmc@anl.gov' ,
2227 'description' : 'Plotting tool for OpenMC models and tally data' ,
28+ 'long_description' : long_description ,
29+ 'long_description_content_type' : 'text/markdown' ,
2330 'url' : 'https://github.com/openmc-dev/plotter' ,
2431 'download_url' : 'https://github.com/openmc-dev/plotter' ,
2532 'project_urls' : {
You can’t perform that action at this time.
0 commit comments