-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
39 lines (36 loc) · 1.36 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (setup, find_namespace_packages)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="astroARIADNE",
version="1.1.2",
author="Jose Vines",
author_email="[email protected]",
maintainer="Jose Vines",
maintainer_email="[email protected]",
description="Bayesian Model Averaging SED fitter",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/jvines/astroARIADNE",
packages=find_namespace_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Science/Research',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Topic :: Scientific/Engineering :: Astronomy"
],
requires=["numpy", "scipy", "matplotlib", "astropy", "astroquery",
"tqdm", "regions", "PyAstronomy", "termcolor",
"dustmaps", "pandas", "numba", "isochrones", "dynesty",
"h5py", "tabulate"],
package_data={'astroARIADNE': ['Datafiles']},
include_package_data=True,
python_requires='>=3.7',
)