Skip to content

Commit

Permalink
Add readme to long description
Browse files Browse the repository at this point in the history
  • Loading branch information
Athanaseus committed Oct 29, 2018
1 parent 471d5a9 commit 3bd1037
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
import os
from setuptools import setup, find_packages

build_root = os.path.dirname(__file__)


def readme():
"""Get readme content for package long description"""
with open(os.path.join(build_root, 'README.rst')) as f:
return f.read()

setup(name="aimfast",
version="0.2.0",
description="An Astronomical Image Fidelity Assessment Tool.",
long_description=readme(),
author="Athanaseus Ramaila",
author_email="[email protected]",
packages=find_packages(),
Expand Down

0 comments on commit 3bd1037

Please sign in to comment.