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) -