-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.87 KB
/
pyproject.toml
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
[project]
authors = [
{name = "lauslim12", email = "[email protected]"},
]
license = {text = "MIT"}
requires-python = "<4.0,>=3.12"
dependencies = [
"requests<3.0.0,>=2.32.3",
"pydantic<3.0.0,>=2.7.4",
]
name = "japanese-duolingo-visualizer"
version = "1.0.0"
description = "Visualize your Japanese learning process with the help of Duolingo's API"
readme = "README.md"
package-mode = false
keywords = [
"automation",
"duolingo",
"github-actions",
"http",
"visualizer",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Environment :: Web Environment",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation",
"Topic :: Database",
"Topic :: Education",
"Topic :: Internet",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.urls]
homepage = "https://github.com/lauslim12/japanese-duolingo-visualizer"
repository = "https://github.com/lauslim12/japanese-duolingo-visualizer"
documentation = "https://github.com/lauslim12/japanese-duolingo-visualizer"
[dependency-groups]
dev = [
"mypy<2.0.0,>=1.10.0",
"pytest<9.0.0,>=8.2.2",
"requests-mock<2.0.0,>=1.12.1",
"types-requests<3.0.0.0,>=2.32.0.20240602",
"pytest-cov<6.0.0,>=5.0.0",
"ruff<1.0.0,>=0.4.9",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.mypy]
strict = "True"
files = ["src"]
[tool.pdm.build]
includes = []