-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (28 loc) · 1.23 KB
/
setup.py
File metadata and controls
executable file
·29 lines (28 loc) · 1.23 KB
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
from setuptools import setup, find_packages, Extension
setup(
name="Spyctres",
version="0.4.0",
description="It fits your spectra!",
keywords='Spectroscopy',
author="Etienne Bachelet",
author_email="etibachelet@gmail.com",
license='GPL-3.0',
url="https://github.com/ebachelet/Spyctres",
download_url = '',
install_requires=['scipy','numpy','matplotlib','astropy','speclite','pysynphot'],
python_requires='>=3.6,<4',
test_suite="nose.collector",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
zip_safe=False,
packages=find_packages('.'),
include_package_data=True,
package_data={'':['H_2MASS_responses.dat','J_2MASS_responses.dat','K_2MASS_responses.dat','LBL_A10_s0_w050_R0300000_T.fits','G_GAIA_responses.dat','Reader_Corliss_Lines.fits'
,'SLOAN_SDSS.gprime_filter.dat','SLOAN_SDSS.uprime_filter.dat','SLOAN_SDSS.rprime_filter.dat','SLOAN_SDSS.iprime_filter.dat','SLOAN_SDSS.zprime_filter.dat',
'Roman_Filters.dat','Bressan_Isochrones.dat']},
)