-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
82 lines (72 loc) · 1.58 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
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "budoux"
dynamic = ["version"]
description = "BudouX is the successor of Budou"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "Shuhei Iitsuka", email = "tushuhei@google.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = []
[project.optional-dependencies]
jaxcpu = [
"jax>=0.9.0; python_version >= '3.11'",
]
dev = [
"build",
"flake8",
"isort",
"mypy>=1.0.0",
"pytest",
"regex",
"toml",
"twine",
"types-regex",
"types-setuptools",
"yapf",
"jax>=0.9.0; python_version >= '3.11'",
]
[project.scripts]
budoux = "budoux.main:main"
[tool.setuptools.dynamic]
version = {attr = "budoux.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["budoux*"]
[tool.setuptools.package-data]
budoux = ["models/*.json", "skip_nodes.json", "py.typed"]
[dependency-groups]
dev = [
"build",
"flake8",
"isort",
"mypy>=1.0.0",
"pytest",
"regex",
"toml",
"twine",
"types-regex",
"types-setuptools",
"yapf",
"jax>=0.9.0; python_version >= '3.11'",
]
[tool.yapf]
based_on_style = "yapf"
[tool.mypy]
python_version = "3.10"
pretty = true
strict = true
allow_untyped_calls = true