rich

Форк
0
/
pyproject.toml 
69 строк · 1.8 Кб
1
[tool.poetry]
2
name = "rich"
3
homepage = "https://github.com/Textualize/rich"
4
documentation = "https://rich.readthedocs.io/en/latest/"
5
version = "13.8.0"
6
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
7
authors = ["Will McGugan <willmcgugan@gmail.com>"]
8
license = "MIT"
9
readme = "README.md"
10
classifiers = [
11
    "Development Status :: 5 - Production/Stable",
12
    "Environment :: Console",
13
    "Framework :: IPython",
14
    "Intended Audience :: Developers",
15
    "Operating System :: Microsoft :: Windows",
16
    "Operating System :: MacOS",
17
    "Operating System :: POSIX :: Linux",
18
    "Programming Language :: Python :: 3.7",
19
    "Programming Language :: Python :: 3.8",
20
    "Programming Language :: Python :: 3.9",
21
    "Programming Language :: Python :: 3.10",
22
    "Programming Language :: Python :: 3.11",
23
    "Programming Language :: Python :: 3.12",
24
    "Typing :: Typed",
25
]
26
include = ["rich/py.typed"]
27

28

29
[tool.poetry.dependencies]
30
python = ">=3.7.0"
31
typing-extensions = { version = ">=4.0.0, <5.0", python = "<3.9" }
32
pygments = "^2.13.0"
33
ipywidgets = { version = ">=7.5.1,<9", optional = true }
34
markdown-it-py = ">=2.2.0"
35

36
[tool.poetry.extras]
37
jupyter = ["ipywidgets"]
38

39
[tool.poetry.dev-dependencies]
40
pytest = "^7.0.0"
41
black = "^22.6"
42
mypy = "^0.971"
43
pytest-cov = "^3.0.0"
44
attrs = "^21.4.0"
45
pre-commit = "^2.17.0"
46
asv = "^0.5.1"
47
importlib-metadata = { version = "*", python = "<3.8" }
48

49
[build-system]
50
requires = ["poetry-core>=1.0.0"]
51
build-backend = "poetry.core.masonry.api"
52

53

54
[tool.mypy]
55
files = ["rich"]
56
show_error_codes = true
57
strict = true
58
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
59

60

61
[[tool.mypy.overrides]]
62
module = ["pygments.*", "IPython.*", "ipywidgets.*"]
63
ignore_missing_imports = true
64

65
[tool.pytest.ini_options]
66
testpaths = ["tests"]
67

68
[tool.isort]
69
profile = "black"
70

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.