-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.39 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
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling>=1.5.0"]
build-backend = "hatchling.build"
[project]
name = "jupyterlab-translate"
description = "JupyterLab Language Pack Translations Helper"
readme = "README.md"
license = {file = "LICENSE.txt"}
authors = [
{ name = "Project Jupyter Contributors", email = "[email protected]" }
]
classifiers = [
"Framework :: Hatch",
"Framework :: Jupyter",
"Framework :: Jupyter :: JupyterLab",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["hatch", "jupyterlab", "language", "localization"]
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
"importlib-metadata>=4.8.3;python_version<\"3.10\"",
"babel",
"click",
"copier>=9.2.0",
"copier-templates-extensions",
"crowdin-api-client",
"hatchling>=1.5",
"jinja2-time",
"polib",
"pydantic",
"requests"
]
[project.optional-dependencies]
test = [
"hatch",
"pre-commit",
"pytest",
"pytest-cov",
]
[project.urls]
homepage = "https://github.com/jupyterlab/jupyterlab-translate"
[project.scripts]
jupyterlab-translate = "jupyterlab_translate.cli:main"
gettext-extract = "jupyterlab_translate.gettext_extract:main"
[project.entry-points.hatch]
jupyter-translate = "jupyterlab_translate.hooks"
[tool.hatch.version]
path = "jupyterlab_translate/__init__.py"