-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.08 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "typer-cli-tool"
version = "0.6.0"
description = "Typing practice in your terminal. Like monkeytype, but in the CLI."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [{ name = "Will Gerstung" }]
dependencies = [
"windows-curses>=2.3; sys_platform == 'win32'",
]
keywords = [
"typing", "typing-test", "typing-speed", "typing-practice",
"wpm", "terminal", "cli", "monkeytype", "speed-typing",
"keyboard", "curses", "typing-game", "touch-typing",
]
classifiers = [
"Environment :: Console :: Curses",
"Topic :: Games/Entertainment",
"Programming Language :: Python :: 3",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
]
[tool.setuptools.packages.find]
include = ["typer_cli*"]
[project.scripts]
typer = "typer_cli.main:entry"
[project.urls]
Homepage = "https://github.com/William-Ger/typer"