-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
50 lines (45 loc) · 1.31 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
#!/usr/bin/env python
# -*- coding: latin-1 -*-
##
# Copyright 2012-2022 Ghent University
#
# This file is part of vsc-administration,
# 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://www.vscentrum.be),
# the Flemish Research Foundation (FWO) (http://www.fwo.be/en)
# and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en).
#
# All rights reserved.
#
##
"""
vsc-administration distribution setup.py
@author: Andy Georges (Ghent University)
@author: Jens Timmerman (Ghent University)
"""
from vsc.install import shared_setup
from vsc.install.shared_setup import ag, jt
install_requires = [
'vsc-accountpage-clients >= 2.1.6',
'vsc-base >= 3.5.0',
'vsc-config >= 3.13.4',
'vsc-filesystems >= 1.3.0',
'vsc-utils >= 2.0.0',
'lockfile >= 0.9.1',
]
PACKAGE = {
'version': '4.8.0',
'author': [ag, jt],
'maintainer': [ag, jt],
'tests_require': ['mock'],
'setup_requires': [
'vsc-install >= 0.15.3',
],
'install_requires': install_requires,
'extras_require': {
'oceanstor': ['vsc-filesystem-oceanstor >= 0.6.0'],
},
}
if __name__ == '__main__':
shared_setup.action_target(PACKAGE)