From 9150900ea4728d431e6fbd88e27a2c24d6a83152 Mon Sep 17 00:00:00 2001 From: kelle Date: Wed, 11 Sep 2024 23:06:29 -0400 Subject: [PATCH] remove from setup.py --- pyproject.toml | 16 +++++++++++----- setup.py | 16 ---------------- 2 files changed, 11 insertions(+), 21 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bad1d441..dda6d625 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,13 +9,19 @@ authors = [ {name = "Joe Filippazzo"}, {name= "Kelle Cruz"}, {name= "Sherelyn Alejandro Merchan"} + ] +description="Spectral energy distribution construction and analysis tools" +license = "MIT" +keywords=['astronomy'] +classifiers=[ + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 3', + 'Topic :: Scientific/Engineering :: Astronomy', + 'Topic :: Software Development :: Libraries :: Python Modules', ] - requires-python = ">=3.11" - -classifiers = [ - "Programming Language :: Python :: 3", -] dependencies = [ "astropy>=5.3.1", "astroquery>=0.4.6", diff --git a/setup.py b/setup.py index af0677ff..0aed7498 100755 --- a/setup.py +++ b/setup.py @@ -53,24 +53,8 @@ def run(self): setup( name='sedkit', - description='Spectral energy distribution construction and analysis tools', - author='Joe Filippazzo', - author_email='jfilippazzo@stsci.edu', - license='MIT', - url='https://github.com/hover2pi/sedkit', - keywords=['astronomy'], - classifiers=[ - 'Intended Audience :: Science/Research', - 'License :: OSI Approved :: BSD License', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Topic :: Scientific/Engineering :: Astronomy', - 'Topic :: Software Development :: Libraries :: Python Modules', - ], packages=find_packages(exclude=["examples"]), - version='1.2.5', setup_requires=['setuptools_scm'], - install_requires=['numpy', 'astropy', 'bokeh', 'emcee', 'pysynphot', 'scipy', 'astroquery', 'dustmaps', 'pandas','svo_filters', 'healpy'], include_package_data=True, extras_require={ 'docs': DOCS_REQUIRE,