-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.03 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
[build-system]
requires = ["setuptools>=60", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dfnbutils"
version = "1.0.0b" # Replace with the actual version string
description = "Utilities for working with IPykernel/DFKernel notebooks"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "BSD"}
authors = [{name = "Dataflow Notebook Team", email = "[email protected]"}]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["Jupyter", "notebooks", "conversion", "utilities"]
urls = {homepage = "https://github.com/dataflownb/dfnbutils"}
dependencies = [
"notebook>=5.4",
"ipython>=7.17.0",
"astor>=0.7",
"asttokens>1.1",
]
[project.optional-dependencies]
test = [
"nbformat",
"nose-timer",
"nbconvert"
]
[tool.setuptools]
packages = ["dfnbutils"]