Skip to content

Commit

Permalink
download url in setup.py for pip
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabri95 committed Sep 28, 2020
1 parent b753697 commit 80adca8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,16 @@
with open("README.md", 'r') as f:
long_description = f.read()

download_url = 'https://github.com/QUVA-Lab/e2cnn/archive/v{}.tar.gz'.format(about['__version__'])

setup(
name=about['__title__'],
version=about['__version__'],
description=about['__summary__'],
author=about['__author__'],
author_email=about['__email__'],
url=about['__url__'],
download_url=download_url,
license=about['__license__'],
long_description=long_description,
packages=find_packages(),
Expand Down

0 comments on commit 80adca8

Please sign in to comment.