-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 2.05 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "elastic-kernel"
version = "0.0.27"
description = "An IPython Kernel that automatically saves and restores Jupyter Notebook execution states."
authors = [
{ name = "ryutarom", email = "m2002r1028@icloud.com" }
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = [
"dill",
"ipykernel",
"ipython",
"networkx",
"numpy",
"xxhash",
"jupyter_client",
"jupyter",
]
keywords = ["jupyter", "kernel", "elastic", "checkpoint", "dependency-tracking"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Framework :: Jupyter",
]
[project.urls]
Homepage = "https://github.com/MRyutaro/ElasticKernel"
Repository = "https://github.com/MRyutaro/ElasticKernel"
Documentation = "https://github.com/MRyutaro/ElasticKernel"
"Bug Tracker" = "https://github.com/MRyutaro/ElasticKernel/issues"
[project.scripts]
elastic-kernel = "elastic_kernel.command:main"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"elastic_kernel" = ["kernel.json", "kernel.py"]
[dependency-groups]
dev = [
"black>=24.8.0",
"build>=1.2.2.post1",
"bump-my-version>=1.2.4",
"flake8>=5.0.4",
"isort>=5.13.2",
"mypy>=1.14.1",
"twine>=6.1.0",
]
[tool.uv.sources]
# “torch” パッケージは常に “pytorch-cpu” インデックスからのみ取得
torch = { index = "pytorch-cpu" }
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true