From 1c86ea2fd24b7310aed7da54d597ee0fbb0d91cd Mon Sep 17 00:00:00 2001 From: Yannick Roehlly Date: Fri, 23 Aug 2019 15:10:22 +0200 Subject: [PATCH] Correct configuration to generate wheels --- .gitignore | 2 ++ setup.cfg | 3 --- setup.py | 3 ++- 3 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 setup.cfg diff --git a/.gitignore b/.gitignore index 6f96f7fa..6fe12c4b 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ pcigale/data/data.db pcigale.egg-info docs/_build docs/api +dist/ +build/ diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index dd55ae2f..00000000 --- a/setup.cfg +++ /dev/null @@ -1,3 +0,0 @@ -[egg_info] -tag_build = .dev -tag_svn_revision = 1 \ No newline at end of file diff --git a/setup.py b/setup.py index 3b726b82..79919eb8 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ setup( install_requires=['numpy', 'scipy', 'sqlalchemy', 'matplotlib', 'configobj', 'astropy'], - + setup_requires=['numpy', 'scipy', 'astropy', 'sqlalchemy', 'configobj'], entry_points=entry_points, cmdclass={"build": custom_build}, @@ -52,6 +52,7 @@ setup( author="The CIGALE team", author_email="cigale@lam.fr", + url="https://cigale.lam.fr", description="Python Code Investigating Galaxy Emission", license="CeCILL-V2", keywords="astrophysics, galaxy, SED fitting" -- GitLab