This repository was archived by the owner on Jun 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.52 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
[tool.poetry]
name = "lark-shell"
version = "0.1.4"
description = "A terminal version of the online Lark IDE"
authors = ["Bryan Hu <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
# repository = "https://github.com/ThatXliner/lark_shell/" # Replaced with "Source Code"
homepage = "https://github.com/ThatXliner/lark_shell/"
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", # Optional support
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Operating System :: POSIX",
"Environment :: Console",
"Topic :: Utilities",
"Typing :: Typed",
]
keywords = ["lark", "lark-parser", "urwid", "tool", "terminal"]
[tool.poetry.urls]
"Source Code" = "https://github.com/ThatXliner/lark_shell"
"Bug Tracker" = "https://github.com/ThatXliner/lark_shell/issues"
"Say Thanks! "= "https://saythanks.io/to/[email protected]"
[tool.poetry.scripts]
lark-shell = "lark_shell:main"
lark_shell = "lark_shell:deprecated_main" # Deprecated
[tool.poetry.dependencies]
python = "^3.6"
urwid = "^2.1.2"
lark-parser = ">=0.8.0,<1.0.0" # Not sure if "^0.8.0" would work
[tool.poetry.dev-dependencies]
# We don't have a pytest test suite yet
flake8 = "^3.8.4"
pylint = "^2.6.0"
black = "^20.8b1"
isort = "^5.6.4"
mypy = "^0.790"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 90