From 225c80f124cea0d95bc0c63c42afef361f153f88 Mon Sep 17 00:00:00 2001 From: Tomas Stolker Date: Thu, 26 Sep 2024 19:36:25 +0200 Subject: [PATCH] Added pyproject.toml and removed setup.py --- setup.py | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 567b4fc..0000000 --- a/setup.py +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env python - -import pkg_resources -import setuptools - -with open('requirements.txt') as req_txt: - parse_req = pkg_resources.parse_requirements(req_txt) - install_requires = [str(req) for req in parse_req] - -setuptools.setup( - name='pycrires', - version='0.3.1', - description='Data reduction pipeline for VLT/CRIRES+', - long_description=open('README.rst').read(), - long_description_content_type='text/x-rst', - author='Tomas Stolker', - author_email='stolker@strw.leidenuniv.nl', - url='https://github.com/tomasstolker/pycrires', - project_urls={'Documentation': 'https://pycrires.readthedocs.io'}, - packages=['pycrires'], - package_data={'pycrires': ['*.txt', - 'calib_data/*.dat', - 'calib_data/*.txt']}, - install_requires=install_requires, - tests_require=['pytest'], - license='MIT', - zip_safe=False, - keywords='pycrires', - classifiers=[ - 'Development Status :: 4 - Beta', - 'Intended Audience :: Science/Research', - 'Topic :: Scientific/Engineering :: Astronomy', - 'License :: OSI Approved :: MIT License', - 'Natural Language :: English', - 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.11', - ], -)