-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.64 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
with open('requirements.txt', 'r') as f:
requirements = f.read().strip('\n').split('\n')
entry_points = {
'console_scripts': [
'castor_align = castor._console_scripts.align:main',
'castor_exoplanet_analysis = castor._console_scripts.exoplanet_analysis:main',
'castor_pointing_analysis = castor._console_scripts.pointing_analysis:main',
'castor_prepare = castor._console_scripts.prepare:main',
'castor_rotate_spectra = castor._console_scripts.rotate_spectra:main',
'castor_wavelength_calibration = castor._console_scripts.wavelength_calibration:main',
'castor_align_spectra = castor._console_scripts.align_spectra:main',
]
}
package_data = {
'': ['data/*'],
}
setuptools.setup(
name='castor-orsay',
version='2023.8.2.1',
author='Gabriel Pelouze, Aurélien Stcherbinine',
author_email='[email protected], [email protected]',
description='Codes pour l’ASTronomie à ORsay',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/coupole-orsay/castor',
packages=setuptools.find_packages(),
entry_points=entry_points,
package_data=package_data,
python_requires='>=3.5',
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
],
)