-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
91 lines (83 loc) · 2.42 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
84
85
86
87
88
89
90
91
###############################################################################
#
# Main configuration and metadata file.
#
# Created: Dmitrii Gusev, 09.10.2022
# Modified: Dmitrii Gusev, 25.06.2024
#
###############################################################################
# -- mypy library config
[mypy]
ignore_missing_imports = True
check_untyped_defs = True
allow_untyped_defs = True
# -- flake8 library config
[flake8]
# - list of ignored issues:
# - E501 - too long line
# - F401 - imported but unused
# - E203 - whitespace before ':' - black formatter puts it
ignore = E203, E501
# - max cognitive complexity for statements
max-complexity = 10
# - adjustment to align with line length for black (it uses 88 chars by default)
# - we use the value = 110 as a default for the project
max-line-length = 110
[pylint.'FORMAT']
max-line-length = 110
# -- application / library metadata
[metadata]
name = pyutilities
version = attr: pyutilities.VERSION
description = PyUtilities :: Useful python 3.x utilities library for various cases.
url = https://pypi.org/project/pyutilities
project_urls =
Source Code = https://github.com/dmitry-ed-gusev/pyutilities
Bug Tracker = https://github.com/dmitry-ed-gusev/pyutilities/issues
# Documentation = <docs url>
# <more urls>
author = Dmitrii Gusev
author_email = [email protected]
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
license_files = LICENSE
keywords = python, toolset, utilities, library, string utils, utils
license = MIT
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Utilities
[options]
zip_safe = False
python_requires = >=3.10
include_package_data = True
package_dir =
= src
packages = find:
install_requires =
xlrd
xlwt
xlwings
pyyaml
openpyxl
urllib3
paramiko
requests
prettytable
fake-useragent
[options.package_data]
* = *.txt, *.rst
# hello = *.msg
# -- path for sources searching
[options.packages.find]
where = src
# -- integration with setuptools - cmd line entry points
[options.entry_points]
console_scripts =
# pyftp = pyutilities.network.pyftp:pyftp
# pyssh = pyutilities.network.pyssh:pyssh
fedit = pyutilities.io.fedit:fedit