aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
blob: 4b5793b31f2c5c9defc91a7fb50da8a051436d07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"

[project]
name = "soon"
requires-python = ">=3.10"
classifiers = [
    "Programming Language :: Rust",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = [
    "rich>=14.0.0",
]

[tool.maturin]
bindings = "bin"
module-name = "soon"

# [project.scripts]
# soon = "soon:__main__"