-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (50 loc) · 1.67 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
[tool.poetry]
name = "tldr-man"
version = "1.5.2"
description = "Command-line TLDR client that displays tldr-pages as manpages"
license = 'Apache-2.0'
readme = "README.md"
authors = ["Olivia Kinnear <[email protected]>"]
homepage = 'https://tldr-man.superatomic.dev/'
repository = 'https://github.com/superatomic/tldr-man'
documentation = 'https://github.com/superatomic/tldr-man#readme'
urls = {'Bug Tracker' = 'https://github.com/superatomic/tldr-man/issues'}
keywords = ['tldr', 'tldr-pages', 'man', 'manpage', 'tldr-client']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: SunOS/Solaris',
'Operating System :: Unix',
'Programming Language :: Unix Shell',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
'Topic :: Text Processing :: Markup :: Markdown',
'Topic :: Utilities',
]
include = ["generate_completions.sh", "tldr-man.1"]
[tool.poetry.dependencies]
python = "^3.10.4"
click = "^8.1.7"
click-help-colors = "^0.9.4"
filelock = "^3.12.3"
requests = "^2.28.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
types-requests = "^2.31.0.10"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tldr = "tldr_man:cli"
tldr-man = "tldr_man:cli"
[tool.mypy]
strict = true
cache_dir = ".mypy_cache"
files = ["src/tldr_man"]