Skip to content

Commit

Permalink
modified: setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
seasidesparrow committed Feb 25, 2022
1 parent 9e5a94d commit 97a0c6e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@ def get_git_version(default="v0.0.1"):
except:
return default

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

setup(
name='ingest_data_model',
version=get_git_version(default="v0.0.1"),
url='http://github.com/adsabs/ingest_data_model/',
license='MIT',
author='NASA/SAO ADS',
description='JSON Schema for ADS Ingest Data',
long_description=__doc__,
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
zip_safe=False,
Expand Down

0 comments on commit 97a0c6e

Please sign in to comment.