-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.28 KB
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
[build-system]
requires = ["setuptools>=42", "wheel", "pybind11", "cmake"]
build-backend = "setuptools.build_meta"
[project]
name = "dtlmod"
version = "0.4"
description = "A versatile simulated data transport layer SimGrid module"
authors = [
{ name = "The SWAT Team", email = "simgrid-community@inria.fr" }
]
readme = "README.md"
license = { text = "LGPL-2.1-only" }
requires-python = ">=3.7"
dependencies = [
"pybind11>=2.4",
"simgrid>=4.1",
"fsmod>=0.4.0"
]
dependencies = ["pybind11>=2.4"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Systems Administration"
]
[project.urls]
Source = "https://github.com/simgrid/dtlmod"
[tool.setuptools]
zip-safe = false
#[tool.setuptools.ext_modules]
# This section is intentionally left blank because the actual extension is built via CMake