-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.36 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
46
47
48
49
50
51
52
53
54
55
56
[build-system]
# These correspond to setup_requires
requires = [
"setuptools>=42",
"wheel",
"cffi>=1.1"
]
# Use setuptools
build-backend = "setuptools.build_meta"
[project]
name = "flux-python"
version = "0.0.0"
description = "Python bindings for the flux resource manager API"
readme = "README.md"
keywords = ["flux", "job manager", "workload manager", "orchestration", "hpc"]
license.file = "LICENSE"
# Corresponds to the `classifiers` argument
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: C++",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Unix",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
# Corresponds to install_requires
dependencies = [
"cffi>=1.1",
"pyyaml"
]
[project.urls]
Homepage = "https://github.com/flux-framework/flux-python"
Repository = "https://github.com/flux-framework/flux-python"
# Corresponds to extras_require
[project.optional-dependencies]
dev = [
"pyyaml",
"jsonschema",
"docutils",
"black",
"IPython"
]