forked from JeffValenti/SME
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
107 lines (97 loc) · 3.12 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
import os
from os.path import dirname, exists, expanduser, join
from shutil import copy
from setuptools import setup
import versioneer
# Create folder structure for config files
print("Set up the configuration files for PySME")
directory = expanduser("~/.sme/")
conf = join(directory, "config.json")
atmo = join(directory, "atmospheres")
nlte = join(directory, "nlte_grids")
cache_atmo = join(atmo, "cache")
cache_nlte = join(nlte, "cache")
os.makedirs(directory, exist_ok=True)
os.makedirs(atmo, exist_ok=True)
os.makedirs(nlte, exist_ok=True)
os.makedirs(cache_atmo, exist_ok=True)
os.makedirs(cache_nlte, exist_ok=True)
# Create config file if it does not exist
if not exists(conf):
# Hardcode default settings?
defaults = {
"data.file_server": "http://sme.astro.uu.se/atmos",
"data.atmospheres": "~/.sme/atmospheres",
"data.nlte_grids": "~/.sme/nlte_grids",
"data.cache.atmospheres": "~/.sme/atmospheres/cache",
"data.cache.nlte_grids": "~/.sme/nlte_grids/cache",
"data.pointers.atmospheres": "datafiles_atmospheres.json",
"data.pointers.nlte_grids": "datafiles_nlte.json",
}
# Save file to disk
with open(conf, "w") as f:
json.dump(defaults, f)
else:
print("Configuration file already exists")
# Copy datafile pointers, for use in the GUI
print("Copy references to datafiles to config directory")
copy(
join(dirname(__file__), "src/pysme/datafiles_atmospheres.json"),
expanduser("~/.sme/datafiles_atmospheres.json"),
)
copy(
join(dirname(__file__), "src/pysme/datafiles_nlte.json"),
expanduser("~/.sme/datafiles_nlte.json"),
)
# TODO: Have smelib compiled before distribution
with open(join(dirname(__file__), "README.md"), "r") as fh:
long_description = fh.read()
# Setup package
setup(
name="pysme-astro",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Spectroscopy Made Easy",
long_description=long_description,
long_description_content_type="text/markdown",
author="Ansgar Wehrhahn, Jeff A. Valenti",
author_email="[email protected], [email protected]",
packages=[
"pysme",
"pysme.gui",
"pysme.atmosphere",
"pysme.linelist",
"pysme.smelib",
],
package_dir={"": "src"},
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"numpy",
"scipy",
"astropy",
"pandas",
"wget",
"tqdm",
"colorlog",
"emcee",
"pybtex",
"flex-format",
],
url="https://github.com/AWehrhahn/SME/",
project_urls={
"Bug Tracker": "https://github.com/AWehrhahn/SME/issues",
"Documentation": "https://pysme-astro.readthedocs.io/en/latest/",
"Source Code": "https://github.com/AWehrhahn/SME/",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
)