-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.06 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
[tool.poetry]
name = "hello-maturin"
version = "0.1.0"
description = "Maturin Starter Project w/PyO3 & Poetry"
authors = [ {name = "kfields", email = "[email protected]"} ]
[tool.poetry.dependencies]
#python = "^3.10"
python = "^3.7"
[tool.poetry.dev-dependencies]
maturin = "^0.13.2"
pytest = "^7.1.2"
pytest-benchmark = "^3.4.1"
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"
[project]
name = "hello-maturin"
version = "0.1.0"
description = "Maturin Starter Project w/Poetry"
authors = [ {name = "kfields", email = "[email protected]"} ]
requires-python = ">=3.7"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
homepage = "https://github.com/kfields/hello-maturin"
documentation = "https://kfields.github.io/hello-maturin/"
repository = "https://github.com/kfields/hello-maturin"
changelog = "https://github.com/kfields/hello-maturin/blob/main/CHANGELOG.md"