-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
53 lines (47 loc) · 1.42 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "e4s-cl"
authors = [
{name = "Frederick Deny", email = "[email protected]"},
{name = "Jean-Baptiste Skutnik", email = "[email protected]"},
]
description = "A command-line utility to run MPI projects in E4S containers"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["containers", "MPI", "hpc", "libraries", "linux"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"License :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
dependencies = [
"termcolor>=1.1.0",
"PyYAML>=6.0",
"texttable>=1.6.2",
"python-ptrace>=0.9.7",
"pyelftools==0.27",
"requests>=2.26.0",
"tinydb==4.5.2",
"python-sotools==0.1.3",
]
dynamic = ["version"]
[project.optional-dependencies]
docker = ['docker>=5.0.3']
[project.urls]
documentation = "https://e4s-cl.readthedocs.io"
repository = "https://github.com/E4S-Project/e4s-cl.git"
changelog = "https://github.com/E4S-Project/e4s-cl/blob/master/CHANGELOG"
[tool.setuptools.packages]
find = {}
[project.scripts]
e4s-cl = "e4s_cl.__main__:main"
e4s-cl-mpi-tester = "e4s_cl.scripts.e4s_cl_mpi_tester:main"
[tool.setuptools_scm]
write_to = "e4s_cl/version.py"