-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
64 lines (56 loc) · 1.37 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
[metadata]
name = CANExplorer
version = attr: my_package.__version__
author = AKJ7
author_email = akj123429@gmail.com
description = A CAN-Analyse tool for all platform
long_description = file: README.md, CHANGELOG.md, LICENSE.md
keywords = CAN, can, canbus, analyse, explorer, decode, encode, dbc, gui
license = BSD-3-Clause
classifiers =
Framework :: PyQt6
Programming Language :: Python :: 3
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.10
install_requires =
requests
importlib-metadata; python_version<"3.10"
[options.package_data]
* = *.txt, *.rst
hello = *.msg
[options.entry_points]
console_scripts =
executable-name = my_package.module:function
[options.extras_require]
pdf = ReportLab>=1.2; RXP
rest = docutils>=0.3; pack ==1.1, ==1.3
[tool.pytest]
minversion = 6.0
addopts =
testpaths =
tests/unit
test/integration
[tool:black]
line-length = 120
include = \.pyi?$
exclude = \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
skip-string-normalization = True
[tools:pylint]
disable = C0111, C0114, C0115, C0116б, W1203, missing-module-docstring, missing-class-docstring, disable=missing-function-docstring
[options.packages.find]
exclude =
examples*
tools*
docs*
my_package.tests*