forked from biboyd/SALSA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 916 Bytes
/
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
from setuptools import setup, find_packages
import os
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=['numpy', 'yt', 'trident', 'spectacle', 'matplotlib', 'pandas',
'scipy', 'mpi4py']
setup(name="astro-salsa",
version="1.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="[email protected]",
license="BSD 3-Clause",
keywords = ["simulation", "spectra", "astronomy", "astrophysics"],
url="https://github.com/biboyd/SALSA",
packages=find_packages(),
classifiers=[ "Programming Language :: Python :: 3"],
install_requires=dependecies)