-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.16 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 = ["hatchling >=1.5"]
build-backend = "hatchling.build"
[project]
name = "voila-materialscloud-template"
version = "0.4.3"
description = 'Voilà template for Materials Cloud.'
authors = [{ name = "The Materials Cloud team" }]
urls = { Source = 'https://github.com/materialscloud-org/voila-materialscloud-template' }
license = { file = 'LICENSE.txt' }
readme = "README.md"
keywords = ['voila', 'jupyter', 'materialscloud']
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = ["voila~=0.4.4", "jupyter-core~=5.3.1"]
[project.optional-dependencies]
dev = [
"invoke~=2.2",
"ipywidgets~=8.1",
"pylint~=2.17",
"jupyterlab~=4.0",
"widget-periodictable~=4.1",
]
[tool.hatch.build.targets.sdist]
artifacts = ["share"]
[tool.hatch.build.targets.wheel]
packages = ["share"]
# copy the templates to the correct location
[tool.hatch.build.targets.wheel.shared-data]
"share/jupyter" = "share/jupyter"