-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (47 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
49 lines (47 loc) · 1.25 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
[project]
name = 'code_challenges'
version = "0.3.0"
description = 'Code for challenges from various platforms'
authors = [
{name="raj-open", email="raj-open@users.noreply.github.com"},
]
urls = {homepage = 'https://github.com/raj-open/exercises'}
maintainers = [
{name="raj-open", email="raj-open@users.noreply.github.com"},
]
license = 'LICENCE'
readme = 'README.md'
keywords = [
"python",
"rust",
]
# cf. https://pypi.org/classifiers
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.10,<3.15"
dependencies = [
# --------------------------------
# compiler
# --------------------------------
"pip>=25.2",
# --------------------------------
# models
# --------------------------------
"pydantic>=2.11.7",
"pydantic-yaml>=1.6.0",
]
[dependency-groups]
dev = [
"ruff>=0.12.12",
"uv>=0.8.15",
]