forked from Akuli/porcupine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.18 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
[tool.black]
line-length = 100
skip-magic-trailing-comma = true
[tool.isort]
line_length = 100
profile = "black"
multi_line_output = 3
# Flit configuration ([build-system] and [project]) are used when pip installing with github url.
# See commands in README.
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "porcupine"
version = "2022.08.27"
description = "A decent editor written in tkinter"
authors = [{name = "Akuli", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = [] # Do not attempt to import porcupine before dependencies are installed
dependencies = [
"appdirs>=1.4.4",
"Pygments==2.12.0",
"toposort>=1.5",
"colorama>=0.2.5",
"sansio-lsp-client>=0.10.0,<0.11.0",
"python-language-server[rope,pyflakes]>=0.36.2,<1.0.0",
"black>=21.5b2",
"typing_extensions",
"dacite>=1.5.1,<2.0.0",
"tomli==2.0.1",
"ttkthemes>=3.0.0",
"send2trash>=1.8.0,<2.0.0",
"psutil>=5.8.0,<6.0.0",
"PyYAML==6.0",
"tree-sitter-builds==2022.8.29",
]
[project.scripts]
porcu = "porcupine.__main__:main"