-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
36 lines (31 loc) · 968 Bytes
/
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
[tool.poetry]
name = "typetest"
version = "0.1.9"
description = "Test your typing speed without leaving the terminal."
authors = ["MasterMedo <[email protected]>"]
maintainers = ["MasterMedo <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/MasterMedo/typetest"
repository = "https://github.com/MasterMedo/typetest"
documentation = "https://github.com/MasterMedo/typetest"
keywords = ["typing", "test", "wpm", "speed", "terminal"]
[tool.poetry.dependencies]
python = "^3.9"
blessed = "^1.18.1"
pandas = "^1.3.0"
matplotlib = "^3.4.2"
seaborn = "^0.11.1"
[tool.poetry.dev-dependencies]
flake8-import-order = "^0.18.1"
flake8 = "^4.0.1"
black = "^21.9b0"
[tool.poetry.scripts]
typetest = 'typetest.__main__:run'
typetest-analyse = 'typetest.analyse.__main__:run'
test = 'test.__main__:run'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79