From ec45c2cf4c26ee5fc5eebb3a3d007770256ef965 Mon Sep 17 00:00:00 2001 From: ctallec Date: Fri, 2 Mar 2018 16:56:48 +0100 Subject: [PATCH] [UPDATE] Updated setups --- setup.cfg | 2 ++ setup.py | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index f6f1eb5..506d90b 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +""" Setup file pyvarinf """ from setuptools import setup main_version = '0' @@ -6,10 +7,10 @@ version = main_version + '.' + subversion setup(name='pyvarinf', version=version, - url='https://gitlab.inria.fr/ctallec/VarInf', - author='Corentin Tallec', + url='https://github.com/ctallec/pyvarinf', + download_url='https://github.com/ctallec/pyvarinf/archive/0.1.tar.gz', + author='Corentin Tallec, Leonard Blier', author_email='corentinxtallec@gmail.com', license='MIT', packages=['pyvarinf'], zip_safe=False) -