-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.15 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyconlang"
description = "Python utility for conlanging"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["conlang", "conlanging"]
license = { text = "BSD 3-Clause License" }
dependencies = [
"Markdown==3.4.1",
"mdx-include==1.4.2",
"prompt-toolkit==3.0.30",
"watchdog==2.1.9",
"click==8.1.3",
"toml==0.10.2",
"pyparsing==3.0.9"
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"mypy==0.971",
"types-Markdown==3.4.0",
"types-toml==0.10.2",
"black==22.6.0",
"isort==5.10.1",
"autoflake==1.4",
"pytest==7.1.2",
"pyparsing[diagrams]==3.0.9"
]
[project.scripts]
pyconlang = "pyconlang.cli:run"
[tool.setuptools.packages.find]
include = ["pyconlang*"]
[tool.setuptools.dynamic]
version = { attr = "pyconlang.__version__" }
[tool.setuptools.package-data]
pyconlang = ["data/**/*"]
[tool.mypy]
mypy_path = "stubs"
disallow_untyped_calls = true
disallow_untyped_defs = true
[tool.black]
extend-exclude = ".env"
[tool.isort]
profile = "black"
src_paths = ["pyconlang", "tests"]
skip = [".env"]