-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (60 loc) · 1.45 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
58
59
60
61
62
63
64
65
66
# Copyright (c) Facebook, Inc. and its affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# NOTE: you have to use single-quoted strings in TOML for regular expressions.
# It's the equivalent of r-strings in Python. Multiline strings are treated as
# verbose regular expressions by Black. Use [ ] to denote a significant space
# character.
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry]
name = "nubia-cli"
version = "0.2.5"
description = "A fork of Meta's nubia, a framework for building beautiful shells."
authors = ["Ahmed Soliman <[email protected]>", "Andreas Backx <[email protected]>",
"Stardust Systems Dev Team"]
license = "BSD"
packages = [
{ include = "nubia" }
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
jellyfish = "~1.0"
prettytable = "^2.4.0"
prompt-toolkit = "^3.0.23"
Pygments = "^2.10.0"
pyparsing = "~3.1"
termcolor = "^1.1.0"
typing-inspect = "^0.7.1"
wcwidth = "^0.2.5"
[tool.poetry.dev-dependencies]
codecov = "*"
nose = "^1.3.7"
pre-commit = "^2.16.0"
black = "~23"
importmagic = "^0.1.7"
pylint = "^3.0"
later = "~23.11"
flake8 = "~6.1"
jedi = "^0.19"
rope = "~1.11"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"