-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (38 loc) · 989 Bytes
/
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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.7,<4"]
[project]
name = "aiida-core-i18n"
version = "0.0.1"
authors = [
{name = "Jusong Yu", email = "jusong.yu@psi.ch"},
]
description = "The i18n package to handle auto translate of aiida-core documentaion to varias languages."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"deepl~=1.11",
"requests~=2.28",
"click~=8.0",
]
[project.optional-dependencies]
dev = [
"pytest~=7.2",
"pytest-regressions~=2.4",
"pytest-cov~=4.0",
]
[tool.pytest.ini_options]
markers = [
"apicall",
]
[project.scripts]
aiida-core-i18n = "aiida_core_i18n.__main__:cli"