-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·37 lines (35 loc) · 1.04 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
import subprocess
from setuptools import setup
from setuptools import find_packages
def readme():
with open('README.md') as file:
return(file.read())
setup(name='lymana_absorption',
version='0.1',
description='Spectral fitting of Lyman alpha absorption',
long_description=readme(),
classifiers=[
'Development Status :: 0 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
],
url='https://github.com/joriswitstok/lymana_absorption/',
author='Joris Witstok',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'matplotlib>=3.5.3',
'numpy>=1.21.6',
'scipy>=1.10.1',
'astropy>=5.2',
'spectres>=2.2.0',
'corner',
'seaborn',
'pymultinest',
'mpi4py',
],
python_requires='>=3.8',
)