-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
135 lines (119 loc) · 2.79 KB
/
Copy pathsetup.cfg
File metadata and controls
135 lines (119 loc) · 2.79 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
[metadata]
name = phoenixnebula-cli
version = 1.0.3
author = Salih Yılboğa
author_email = salihyilboga98@gmail.com
description = A feature-rich, customizable Unix shell with themes and job control
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/SysTechSalihY/phoenixnebula
project_urls =
Bug Tracker = https://github.com/SysTechSalihY/phoenixnebula/issues
Documentation = https://github.com/SysTechSalihY/phoenixnebula
Source Code = https://github.com/SysTechSalihY/phoenixnebula
Changelog = https://github.com/SysTechSalihY/phoenixnebula/blob/main/CHANGELOG.md
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: POSIX :: Linux
Operating System :: MacOS
Operating System :: POSIX :: BSD
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: System :: Shells
Topic :: System :: Operating System
Topic :: Terminals
Typing :: Typed
keywords =
shell
terminal
bash
cli
interactive
unix
theme
customizable
job-control
license = MIT
license_files = LICENSE
[options]
packages = find:
python_requires = >=3.7
include_package_data = True
zip_safe = False
[options.entry_points]
console_scripts =
phoenixnebula = phoenixnebula.phoenixnebula:main
[options.packages.find]
where = .
include = phoenixnebula*
exclude =
tests*
docs*
[options.package_data]
phoenixnebula = py.typed
[bdist_wheel]
universal = False
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--strict-markers
--tb=short
--disable-warnings
markers =
security: Security-related tests
integration: Integration tests
unit: Unit tests
[flake8]
max-line-length = 100
exclude =
.git
__pycache__
build
dist
.eggs
*.egg-info
.venv
venv
ignore = E203, W503
[pylint]
disable = C0111, C0103, R0913, R0914, R0915
[mypy]
python_version = 3.7
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = False
[isort]
profile = black
line_length = 100
multi_line_mode = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
[coverage:run]
source = phoenixnebula
omit =
*/tests/*
*/test_*.py
setup.py
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
if TYPE_CHECKING:
@abstractmethod
@abc.abstractmethod