-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 842 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 842 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
[build-system]
requires = ["setuptools>=42", "wheel", "pybind11", "cmake"]
build-backend = "setuptools.build_meta"
[project]
name = "fsmod"
version = "0.4.0"
description = "A simulated file system module for SimGrid"
authors = [
{ name = "FSMod 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"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Topic :: System :: Distributed Computing"
]
[project.urls]
Source = "https://github.com/simgrid/file-system-module"