From d18e7c41475450f0752bc4db6f24806c124fa927 Mon Sep 17 00:00:00 2001 From: Christian Arauner Date: Mon, 27 Jan 2025 10:42:33 +0000 Subject: [PATCH] switch to pyproject --- pyproject.toml | 1 + setup.py | 47 ----------------------------------------------- 2 files changed, 1 insertion(+), 47 deletions(-) delete mode 100644 setup.py diff --git a/pyproject.toml b/pyproject.toml index 4f4c76d..4ef36a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,7 @@ classifiers=[ dependencies = [ "astropy", "click", + "scikit-image", "h5py", "matplotlib", "numpy", diff --git a/setup.py b/setup.py deleted file mode 100644 index 9f676db..0000000 --- a/setup.py +++ /dev/null @@ -1,47 +0,0 @@ -from setuptools import setup, find_packages - -setup( - name="radiosim", - version="0.0.3", - description="Simulation of radio skies to create astrophysical data sets", - url="https://github.com/Kevin2/radionets", - author="Kevin Schmidt, Felix Geyer, Paul-Simon Blomenkamp, Stefan Fröse", - author_email="kevin3.schmidt@tu-dortmund.de", - license="MIT", - packages=find_packages(), - install_requires=[ - "numpy", - "matplotlib", - "h5py", - "toml", - "click", - "tqdm", - "scipy", - "scikit-image", - "astropy", - "pathlib", - "joblib", - "pytest", - "opencv-python", - ], - setup_requires=["pytest-runner"], - tests_require=["pytest"], - zip_safe=False, - entry_points={ - "console_scripts": [ - "radiosim = radiosim.scripts.start_simulation:main", - ], - }, - classifiers=[ - "Development Status :: 3 - Alpha", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Natural Language :: English", - "Operating System :: OS Independent", - "Programming Language :: Python", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3 :: Only", - "Topic :: Scientific/Engineering :: Astronomy", - "Topic :: Scientific/Engineering :: Physics", - ], -)