-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (49 loc) · 1.53 KB
/
Copy pathsetup.py
File metadata and controls
55 lines (49 loc) · 1.53 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
47
48
49
50
51
52
53
54
55
from pathlib import Path
from setuptools import find_packages, setup
_info_ = {}
with open('bayspec/__info__.py') as f:
exec(f.read(), _info_)
readme_path = Path(__file__).parent / 'README.md'
long_description = readme_path.read_text(encoding='utf-8')
setup(
name='bayspec',
version=_info_['__version__'],
description='Astronomical spectrum fitting tool',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jun Yang',
author_email='jyang@smail.nju.edu.cn',
url='https://github.com/jyangch/bayspec',
license='GPLv3',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Topic :: Scientific/Engineering :: Astronomy',
],
python_requires='>=3.8',
install_requires=[
'numpy>=1.20.4',
'numba>=0.56',
'pandas>=1.4.2',
'scipy>=1.8.0',
'toml>=0.10.2',
'tabulate>=0.9.0',
'plotly>=5.22.0',
'matplotlib>=3.2.1',
'corner>=2.2.1',
'getdist>=1.7.2',
'astropy>=5.2.2',
'emcee>=3.1.1',
'pymultinest>=2.12',
'lmfit>=1.0.3',
'iminuit>=2.0.0',
],
packages=find_packages(exclude=['examples*', 'docs*']),
include_package_data=True,
project_urls={
'Source Code': 'https://github.com/jyangch/bayspec',
'Documentation': 'https://bayspec.readthedocs.io',
},
)