-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
executable file
·49 lines (41 loc) · 1.27 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
#!/usr/bin/env python
# #
# Copyright 2009-2023 Ghent University
#
# This file is part of vsc-filesystems,
# originally created by the HPC team of Ghent University (http://ugent.be/hpc/en),
# with support of Ghent University (http://ugent.be/hpc),
# the Flemish Supercomputer Centre (VSC) (https://vscentrum.be/nl/en),
# the Hercules foundation (http://www.herculesstichting.be/in_English)
# and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en).
#
# All rights reserved.
#
# #
"""
vsc-filesystems base distribution setup.py
@author: Stijn De Weirdt (Ghent University)
@author: Andy Georges (Ghent University)
"""
import sys
import vsc.install.shared_setup as shared_setup
from vsc.install.shared_setup import ag, kh, sdw, kw, wdp
install_requires = [
"vsc-base >= 3.0.3",
"vsc-config >= 3.13.1",
"vsc-utils >= 2.0.0",
]
if sys.version_info < (3,9):
install_requires.append("pyyaml <= 6.0.1")
else:
install_requires.append("pyyaml")
PACKAGE = {
"version": "2.3.0",
"author": [sdw, ag, kh, kw],
"maintainer": [sdw, ag, kh, kw, wdp],
"setup_requires": ["vsc-install >= 0.15.2"],
"tests_require": ["mock"],
"install_requires": install_requires,
}
if __name__ == "__main__":
shared_setup.action_target(PACKAGE)