forked from ACCarnall/bagpipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (28 loc) · 1.14 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
38
39
40
41
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='bagpipes',
version='0.8.5',
description='Galaxy spectral fitting',
long_description=long_description,
url='https://bagpipes.readthedocs.io',
author='Adam Carnall',
author_email='[email protected]',
packages=["bagpipes", "bagpipes.fitting", "bagpipes.catalogue",
"bagpipes.models", "bagpipes.filters", "bagpipes.input",
"bagpipes.plotting", "bagpipes.models.making", "bagpipes.moons"],
include_package_data=True,
install_requires=["numpy>=1.14.2", "corner", "pymultinest>=2.11",
"astropy", "matplotlib>=2.2.2", "scipy", "msgpack",
"deepdish", "pandas<=1.1.5"],
project_urls={
"readthedocs": "https://bagpipes.readthedocs.io",
"GitHub": "https://github.com/ACCarnall/bagpipes",
"ArXiv": "https://arxiv.org/abs/1712.04452"
}
)