-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.66 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
57
[build-system]
requires = ["maturin>=1.9,<2.0"]
build-backend = "maturin"
[project]
name = "jsrun"
requires-python = ">=3.10"
description = "Modern embedded JavaScript runtime for Python powered by V8 and Rust."
readme = "README.md"
license = 'MIT'
authors = [{ name = "Xin Fu", email = "xin@imfing.com" }]
keywords = ["javascript", "v8", "pyo3", "asyncio", "rust-extension"]
classifiers = [
"Typing :: Typed",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Rust",
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/imfing/jsrun"
Repository = "https://github.com/imfing/jsrun"
[dependency-groups]
dev = ["maturin"]
testing = [{ include-group = "dev" }, "pytest>=8.4.0", "pytest-asyncio>=1.2.0"]
docs = [
"mkdocs>=1.6.0",
"mkdocs-material>=9.6.0",
"mkdocstrings[python]>=0.28.0",
]
all = [
{ include-group = "dev" },
{ include-group = 'testing' },
{ include-group = 'docs' },
]
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "jsrun._jsrun"
python-source = "python"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"