Skip to content

Commit

Permalink
add README as package description
Browse files Browse the repository at this point in the history
  • Loading branch information
jelleschutter committed Apr 20, 2021
1 parent 1d2eec9 commit e4a94b6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ def run(self):
root_files = [os.path.join(root, i) for i in files]
data_files.append((root, root_files))

with open('README.md', 'r') as readme:
long_description = readme.read()

setup_args = {
'name': 'nbconvert-theme-pale-sand-navy',
'version': '0.2.0',
Expand All @@ -53,6 +56,8 @@ def run(self):
],
'author': 'Jelle Schutter',
'author_email': '[email protected]',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'url': 'https://github.com/jelleschutter/nbconvert-theme-pale-sand-navy',
'cmdclass': {
'develop': DevelopCmd,
Expand Down

0 comments on commit e4a94b6

Please sign in to comment.