-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 960 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
37
38
39
40
[tool.poetry]
name = "wordgen"
version = "2022.1.0"
description = "Word training set generator for learning typing and improving your performance"
authors = ["Octelly <[email protected]>"]
readme = "README.md"
license = "Unlicense"
repository = "https://github.com/Johnystar/wordgen"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities"
]
packages = [
{ include = "wordgen", from = "src" },
]
include = [
"src/wordgen/data/courses/*",
"src/wordgen/data/words/*",
]
[tool.poetry.scripts]
wordgen = 'wordgen.cli:cli'
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
pyperclip = "^1.8.2"
appdirs = "^1.4.4"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.279"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"