-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.29 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "aprompt"
version = "3.0.1"
description = "Advanced Prompts"
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"form",
"input",
"prompt",
]
license = {text = "MIT"}
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development",
"Typing :: Typed",
]
dependencies = [
"attrs",
"platformdirs",
"readchar",
]
[project.optional-dependencies]
docs = [
"furo>=2022.12.7",
"myst-parser>=1.0",
"Sphinx>=6.1",
"sphinx-copybutton>=0.5",
]
dev = ["mypy", "pytest"]
[project.urls]
"Documentation" = "https://aprompt.readthedocs.io/"
"Source Code" = "https://github.com/phoenixr-codes/aprompt/"
[tool.mypy]
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
no_implicit_optional = true
warn_unused_ignores = true
[tool.pytest.ini_options]
markers = [
"meta: any other test is invalid if a test marked with this marker fails"
]