-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 962 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (34 loc) · 962 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
32
33
34
35
36
37
38
39
[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"
[project]
name = "rstypes"
version = "0.1.1"
description = "Thread-safe async-aware types for Python written in Rust"
readme = "README.md"
authors = [{ name = "Brian Goo" }]
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Homepage = "https://github.com/brian-goo/rstypes"
Source = "https://github.com/brian-goo/rstypes"
[tool.maturin]
python-source = "python"
module-name = "rstypes._rstypes"
features = ["pyo3/extension-module"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"
asyncio_default_test_loop_scope = "function"
[dependency-groups]
test = [
"pytest",
"pytest-asyncio",
]