-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
68 lines (59 loc) · 1.63 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
[bumpversion]
current_version = 0.2.2
commit = True
tag = True
[metadata]
name = pip-rating
version = attr: pip_rating.__version__
description = Check the health of your project's requirements and get a rating for each dependency.
long_description = file: README.rst
keywords = pip-rating
author = Nekmo
author_email = [email protected]
url = https://github.com/Nekmo/pip-rating/
download_url = https://github.com/Nekmo/pip-rating/archive/master.zip
license = MIT license
license_files =
LICENSE
platform = any
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: SunOS/Solaris
Operating System :: POSIX :: BSD
License :: OSI Approved :: MIT License
Natural Language :: English
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires = file:requirements.in
[options.entry_points]
console_scripts =
pip-rating = pip_rating.management:manage
[bdist_wheel]
universal = 1
[sdist]
formats = zip, gztar
[check]
metadata = True
restructuredtext = True
strict = True
[bumpversion:file:pip_rating/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[flake8]
exclude = docs
ignore = E203, E266, E501, W503, F403, F401, E122
max-line-length = 120
max-complexity = 18
select = B,C,E,F,W,T4,B9
[aliases]