-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathversion.py
More file actions
33 lines (23 loc) · 958 Bytes
/
version.py
File metadata and controls
33 lines (23 loc) · 958 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
27
28
29
30
31
32
33
"""
Copyright (C) 2019-2022 Vanessa Sochat.
This Source Code Form is subject to the terms of the
Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed
with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""
__version__ = "0.1.19"
AUTHOR = "Vanessa Sochat"
AUTHOR_EMAIL = "vsoch@users.noreply.github.com"
NAME = "singularity-compose"
PACKAGE_URL = "http://github.com/singularityhub/singularity-compose"
KEYWORDS = "singularity, compose"
DESCRIPTION = "simple orchestration for singularity containers"
LICENSE = "LICENSE"
################################################################################
# Global requirements
INSTALL_REQUIRES = (
("spython", {"min_version": "0.2.11"}),
("pyaml", {"min_version": "5.1.1"}),
)
INSTALL_REQUIRES_CHECKS = INSTALL_REQUIRES + (("jsonschema", {"min_version": None}),)
TESTS_REQUIRES = (("pytest", {"min_version": "4.6.2"}),)
INSTALL_REQUIRES_ALL = INSTALL_REQUIRES