-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
58 lines (50 loc) · 1.35 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
[metadata]
name = eyeditor
version = attr: eye.__version__
description = EYE - A Qt-based scriptable text editor
long_description = file: README.rst
keywords = code, development, editor, qt, script, ide
url = https://github.com/hydrargyrum/eye
license = WTFPL
author = Hg
author_email = [email protected]
classifier =
Development Status :: 3 - Alpha
Environment :: X11 Applications :: Qt
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: Public Domain
Topic :: Text Editors
Topic :: Text Editors :: Integrated Development Environments (IDE)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
zip_safe = 0
python_requires = >=3.3
install_requires =
PyQt5
QScintilla
pyxdg
packages = find:
[options.entry_points]
console_scripts =
eye=eye.app:main
[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1
[isort]
include_trailing_comma = True
use_parentheses = True
multi_line_output = 5
# VERTICAL_GRID_GROUPED
no_inline_sort = True
only_sections = True
force_sort_within_sections = True
line_length = 120
known_first_party = eye