-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1.01 KB
/
setup.py
File metadata and controls
37 lines (36 loc) · 1.01 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
30
31
32
33
34
35
36
37
from setuptools import setup
setup(
name="InLIFEsim",
version="0.0.1",
description="Instrumental noise simulator software for the Large Interferometer For Exoplanets (LIFE)",
author="Felix Dannert",
author_email="fdannert@ethz.ch",
url="https://github.com/fdannert/InLIFEsim",
packages=["inlifesim"],
include_package_data=True,
install_requires=[
"numpy",
"scipy",
"pandas",
"tqdm",
"xarray",
"h5netcdf",
"matplotlib",
"cmocean",
"joblib",
"joblib-progress",
"astropy",
],
license="GPLv3",
zip_safe=False,
keywords="inlifesim",
python_requires="~=3.8",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
],
)