-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.39 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
59
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "prosaic-app"
version = "1.4.3"
description = "A writer-first terminal writing app"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{ name = "Deepansh Khurana" }
]
keywords = ["writing", "terminal", "markdown", "tui"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Text Editors",
]
dependencies = [
"textual[syntax]>=0.50.0",
"click>=8.1.0",
"platformdirs>=4.0.0",
"gitpython>=3.1.0",
"pyspellchecker>=0.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"textual-dev>=1.0.0",
]
grammar = [
"language-tool-python>=2.8.0",
]
[project.scripts]
prosaic = "prosaic.__main__:main"
[project.urls]
Homepage = "https://prosaic.dimwit.me"
Repository = "https://github.com/dimwitlabs/prosaic"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["build*", "tests*"]
[tool.setuptools.package-data]
prosaic = ["themes/*.tcss", "LICENSE", "REFERENCE"]
[tool.pytest.ini_options]
testpaths = ["tests"]