forked from deshaw/nbstripout-fast
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.04 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
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"
[project]
name = "nbstripout-fast"
description="Strips outputs from Jupyter notebooks"
readme = "README.md"
author="Marc Udoff"
author_email="[email protected]"
url="https://github.com/deshaw/nbstripout-fast"
requires_python=">=3.9"
setup_requires=[
"pytest-runner",
]
tests_require=[
"nbformat",
"pytest",
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Framework :: IPython",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Version Control",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.optional-dependencies]
test = [
"pytest",
"nbformat",
"nbconvert",
"ipykernel",
]
[tool.maturin]
bindings = "bin"