forked from Stephen-RA-King/piptools-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
83 lines (74 loc) · 2.24 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
# https://setuptools.pypa.io/en/latest/userguide/declarative_config.html?highlight=package_data
[metadata]
name = piptools_sync
version = attr: piptools_sync.__version__
author = Stephen R A King
author_email = [email protected]
maintainer = Stephen R A King
maintainer_email = [email protected]
description = A piptools pre-commit version sync utility
long_description = file: README.md
long_description_content_type = text/markdown
keywords = utility,
platforms = Any
url = https://github.com/Stephen-RA-King/piptools-sync
download_url = https://github.com/Stephen-RA-King/piptools_sync/archive/refs/heads/main.zip
license = MIT
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Operating System :: OS Independent
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
package_dir=
=src
packages=find:
project_urls=
include_package_data = True
python_requires = >=3.8
install_requires =
aiohttp
click
gitpython
pyyaml
requests
toml
tqdm
[options.packages.find]
where=src
[options.package_data]
piptools_sync =
config.toml
mapping.json
[options.entry_points]
console_scripts =
piptools_sync = piptools_sync.piptools_sync:main
[flake8]
# https://flake8.pycqa.org/en/latest/user/options.html
# flake8 - F401-F901
# flake8-comprehensions - C400-C416
# flake8-bugbear - B001-B018, B901-B950
# flake8-docstrings - D100-D418 (flake8 plugin for pydocstyle)
# pycodestyle - E101-E902, W191-W606
# pep8-naming - N801-N818
docstring-convention = numpy
max-complexity = 18
max-line-length = 88
select = B, B9, C, D, E, F, N, W
exclude = tests/*,.tox/*,.nox/*,docs/*,.git/*,.github/*
ignore =
# pycodestyle - whitespace before ‘,’, ‘;’, or ‘:’ - to be compatible with black
E203,
# pycodestyle - line break before binary operator
W503,
per-file-ignores =
# flake8 - module imported but not used
__init__.py:F401
pathmagic.py:F401
test_piptools_sync.py:F401