-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 1.27 KB
/
setup.py
File metadata and controls
24 lines (23 loc) · 1.27 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
from distutils.core import setup
setup(
name="lyaemu",
version='1.1.0',
author="Simeon Bird, Ming-Feng Ho, Martin Fernandez and Keir Rogers",
author_email="spb@ucr.edu",
license = "mit",
url="http://github.com/sbird/lya_emulator",
description="Module for easily generating emulators for the lyman alpha forest from simulations",
long_description="Module for easily generating emulators for the lyman alpha forest from simulations",
long_description_content_type = "text/plain",
packages = ['lyaemu', 'lyaemu.tests', 'lyaemu.SimulationRunner.SimulationRunner', 'lyaemu.meanT'],
requires=['numpy', 'fake_spectra','scipy', "gpytorch", "cobaya", "h5py", 'fitsio', 'classy'],
package_data = {
'lyaemu': ['data/boss_dr*_data/*.dat','data/desi*/*.txt', 'data/kodiaq_squad/*.txt','data/xq100/*.csv','data/*', 'data/Gaikwad/Gaikwad_2020b_T0_Evolution_All_Statistics.txt'],
},
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Visualization"]
)