-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
44 lines (40 loc) · 1.06 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
[metadata]
name = huaytools
version = 1.0.5
url = https://github.com/imhuay/huaytools
license = MIT
description = HuaYang's personal tool library.
long_description = file: README.md
long_description_content_type = text/markdown
author = HuaYang
author_email = [email protected]
classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: MacOS
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
[options]
package_dir =
=src
packages = find:
include_package_data = True
install_requires =
requests
dataclasses; python_version < '3.7'
[options.packages.find]
where=src
[flake8]
per-file-ignores =
# F401: imported but unused
__init__.py: F401
max-complexity = 10
max-line-length = 127
[mypy]
# https://mypy.readthedocs.io/en/stable/config_file.html#config-file
#implicit_optional = True
strict_optional = False