-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (45 loc) · 1.18 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
45
46
47
48
49
50
[build-system]
requires = ["maturin>=0.12,<0.13"]
build-backend = "maturin"
[project]
name = "rustdef"
description = "Jupyter extension which executes Rust functions in Python"
readme = "README.md"
license = { text = "MIT" }
keywords = ["Jupyter notebook", "Rust", "Jupyter extension"]
requires-dist = ["maturin", "jupyter"]
classifiers = [
"Framework :: Jupyter",
"Framework :: IPython",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Rust",
]
requires-python = ">=3.7"
dependencies = [
"jupyter",
"pip",
"toml>=0.10",
"maturin>=0.12",
]
authors = [
{ email = "emak.ryo@gmail.com", name = "Ryosuke Kamesawa" }
]
[project.urls]
homepage = "https://github.com/emakryo/rustdef"
# Poetry is used for development
[tool.poetry]
name = "rustdef"
version = "0.4.0"
description = ""
[tool.poetry.dependencies]
python = "^3.6"
pip = "^21.1"
jupyter = "^1.0.0"
maturin = "^0.8.3"
numpy = "^1.19.4"