forked from bpython/bpython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
83 lines (71 loc) · 1.75 KB
/
setup.cfg
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[metadata]
name = bpython
long_description = file: README.rst
long_description_content_type = text/x-rst
license = MIT
license_files = LICENSE
author = Bob Farrell, Andreas Stuehrk, Sebastian Ramacher, Thomas Ballinger, et al.
author_email = [email protected]
url = https://www.bpython-interpreter.org/
project_urls =
GitHub = https://github.com/bpython/bpython
Documentation = https://docs.bpython-interpreter.org
classifiers =
Programming Language :: Python :: 3
[options]
python_requires = >=3.9
packages =
bpython
bpython.curtsiesfrontend
bpython.test
bpython.test.fodder
bpython.translations
bpdb
install_requires =
curtsies >=0.4.0
cwcwidth
greenlet
pygments
pyxdg
requests
typing_extensions ; python_version < "3.11"
[options.extras_require]
clipboard = pyperclip
jedi = jedi >= 0.16
urwid = urwid
watch = watchdog
[options.entry_points]
console_scripts =
bpython = bpython.curtsies:main
bpython-urwid = bpython.urwid:main [urwid]
bpdb = bpdb:main
[init_catalog]
domain = bpython
input_file = bpython/translations/bpython.pot
output_dir = bpython/translations
[compile_catalog]
domain = bpython
directory = bpython/translations
use_fuzzy = true
[update_catalog]
domain = bpython
input_file = bpython/translations/bpython.pot
output_dir = bpython/translations
[extract_messages]
output_file = bpython/translations/bpython.pot
msgid_bugs_address = https://github.com/bpython/bpython/issues
[build_sphinx_man]
builder = man
source_dir = doc/sphinx/source
build_dir = build
[mypy]
warn_return_any = True
warn_unused_configs = True
mypy_path=stubs
files=bpython
[mypy-jedi]
ignore_missing_imports = True
[mypy-urwid]
ignore_missing_imports = True
[mypy-twisted.*]
ignore_missing_imports = True