-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (69 loc) · 2.12 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (69 loc) · 2.12 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pythonlings"
version = "0.4.1"
description = "Python learnings, Rustlings-style, in a terminal TUI."
readme = "Readme.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = [
"python",
"python-exercises",
"learn-python",
"pythonlings",
"beginner-python",
"coding-practice",
"rustlings",
"textual",
"tui",
"cli",
"education",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Console :: Curses",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Education",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"Topic :: Software Development :: Testing",
]
dependencies = [
"textual[syntax]>=8.0.0",
"tomli>=1.1.0; python_version < '3.11'",
]
[project.urls]
Homepage = "https://github.com/abhiksark/pythonlings"
Repository = "https://github.com/abhiksark/pythonlings"
Issues = "https://github.com/abhiksark/pythonlings/issues"
Changelog = "https://github.com/abhiksark/pythonlings/blob/main/CHANGELOG.md"
Documentation = "https://pythonlings.abhik.ai/"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
]
[project.scripts]
pythonlings = "pythonlings.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["pythonlings"]
[tool.hatch.build.targets.wheel.force-include]
"pythonlings/pythonlings.tcss" = "pythonlings/pythonlings.tcss"
"info.toml" = "pythonlings/curriculum/info.toml"
"exercises" = "pythonlings/curriculum/exercises"
"checks" = "pythonlings/curriculum/checks"
"solutions" = "pythonlings/curriculum/solutions"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]