From 95f2767108d394803ed1e1d5fe321aeafc219a49 Mon Sep 17 00:00:00 2001 From: JCGoran <goran.jelic-cizmek@unige.ch> Date: Fri, 19 Nov 2021 10:29:34 +0100 Subject: [PATCH] Added metadata to setup script --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 532ddbc..945bf69 100644 --- a/setup.py +++ b/setup.py @@ -2,5 +2,11 @@ from setuptools import Extension, setup from Cython.Build import cythonize setup( - ext_modules = cythonize([Extension("coffe", ["coffe.pyx"])]) + name='Coffe', + version='3.0', + description='The COrrelation Function Full-sky Estimator code', + url='https://github.com/JCGoran/coffe', + author='Goran Jelic-Cizmek', + author_email='goran.jelic-cizmek@unige.ch', + ext_modules=cythonize([Extension("coffe", ["coffe.pyx"])]) ) -- GitLab