forked from s3-school/pkoffee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 958 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 958 Bytes
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
[build-system]
build-backend = "uv_build"
requires = ["uv_build>=0.9,<0.10.0"]
[project]
name = "pkoffee"
version = "0.1.0"
description = "Coffee productivity analysis with statistical modeling"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Thomas Vuillaume", email = "thomas.vuillaume@lapp.in2p3.fr" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
]
[project.urls]
"Homepage" = "https://github.com/s3-school/pkoffee"
"Bug Tracker" = "https://github.com/s3-school/pkoffee/issues"
"Documentation" = "https://github.com/s3-school/pkoffee/blob/main/README.md"
[project.scripts]
pkoffee = "pkoffee.cli:main"