Skip to content

Commit

Permalink
Use README.md as package description.
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbekasov committed Oct 19, 2020
1 parent f97eb30 commit 3a551ef
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
from os import path
from setuptools import find_packages, setup

exec(open("nflows/version.py").read())

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name="nflows",
version=__version__,
description="Normalizing flows in PyTorch.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/bayesiains/nflows",
download_url = 'https://github.com/bayesiains/nflows/archive/v0.12.tar.gz',
author="Conor Durkan, Artur Bekasov, George Papamakarios, Iain Murray",
Expand Down

0 comments on commit 3a551ef

Please sign in to comment.