-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (43 loc) · 1.39 KB
/
setup.py
File metadata and controls
46 lines (43 loc) · 1.39 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
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
#base dependencies
#NOTE: gcc compiler is needed to install some packages
dependecies=[
'astropy',
'h5py',
'matplotlib',
'mpi4py',
'numpy',
'scipy',
'trident',
'yt',
]
dev_deps=[
'pandas', # needed for getting the sample data
'pooch',
'pytest',
'sphinx',
'sphinx_automodapi',
'sphinx_rtd_theme',
]
setup(name="astro-salsa",
version="2.0.0",
description = ("Synthetic absorber catalog generator from astrophysical simulations"),
long_description=long_description,
long_description_content_type='text/markdown',
author="Brendan Boyd",
author_email="boyd.brendan@stonybrook.edu",
maintainer="Claire Kopenhafer",
maintainer_email="kopenhaf@msu.edu",
license="BSD 3-Clause",
keywords = ["simulation", "spectra", "astronomy", "astrophysics"],
url="https://github.com/biboyd/SALSA",
packages=find_packages(),
classifiers=["Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"],
python_requires=">=3.11",
install_requires=dependecies,
extras_require={'dev':dev_deps})