-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.3 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
[build-system]
requires = ["setuptools>=43.0.0", "cython>=3.0.0", "numpy>=1.10.0"]
build-backend = "setuptools.build_meta"
[project]
description = 'Charm4py Parallel Programming Framework'
authors = [
{ name = "Juan Galvez", email = "[email protected]" },
{ name = "Maya Taylor", email = "[email protected]" },
]
maintainers = [{ name = "Maya Taylor", email = "[email protected]" }]
name = "charm4py"
dynamic = ["version"]
readme = { file = "README.rst", content-type = "text/x-rst" }
keywords = [
"parallel",
"parallel programming",
"distributed computing",
"distributed",
"hpc",
"HPC",
"runtime",
]
requires-python = ">=3.7"
dependencies = ["numpy>=1.10.0", "greenlet>=3.0.0"]
classifiers = [
'Intended Audience :: Developers',
'License :: Free for non-commercial use',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Clustering',
]
[project.urls]
Documentation = "https://charm4py.readthedocs.io"
Repository = "https://github.com/charmplusplus/charm4py"
[project.scripts]
charmrun = 'charmrun.start:start'