-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinstall.py
More file actions
executable file
·26 lines (18 loc) · 880 Bytes
/
install.py
File metadata and controls
executable file
·26 lines (18 loc) · 880 Bytes
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
#!/usr/bin/env python
# -*- coding: utf8 -*-
# *****************************************************************
# ** PTS -- Python Toolkit for working with SKIRT **
# ** © Astronomical Observatory, Ghent University **
# *****************************************************************
## \package pts.install Install PTS after obtaining the source code.
# -----------------------------------------------------------------
# Ensure Python 3 compatibility
from __future__ import absolute_import, division, print_function
# Import the relevant PTS classes and modules
from core.prep.installation import PTSInstaller
# -----------------------------------------------------------------
# Create the PTS installer
installer = PTSInstaller()
# Run the installer
installer.run()
# -----------------------------------------------------------------