-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (29 loc) · 944 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
[project]
name = "WordParser"
version = "0.0.1"
authors = [
{name = "Wojciech Ziarnik", email = "[email protected]"},
{name = "Dawid Adamczyk", email = "[email protected]"}
]
description = "Web application to learn using flashcards"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.12"
[project.urls]
Homepage = "https://github.com/daada95/WordParser"
Documentation = "https://github.com/daada95/WordParser/blob/main/README.md"
Repository = "https://github.com/daada95/WordParser.git"
Issues = "https://github.com/daada95/WordParser/issues"
[tool.black]
line-length = 100
target-version = ['py311']
include = '\.pyi?$'
[tool.pytest.ini_options]
asyncio_mode = "auto"