-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
100 lines (90 loc) · 1.94 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
92
93
94
95
96
97
98
99
100
;;
;; Dependency comb package
;;
[metadata]
name = dependency-comb
version = 0.4.0
description = A tool to analyze requirements with Pypi API
long_description = file:README.rst
long_description_content_type = text/x-rst
author = David Thenon
author_email = [email protected]
url = https://github.com/sveetch/dependency-comb
project_urls =
Source Code = https://github.com/sveetch/dependency-comb
Issue Tracker = https://github.com/sveetch/dependency-comb/issues
Changelog = https://dependency-comb.readthedocs.io/en/latest/history.html
Documentation = https://dependency-comb.readthedocs.io/
license = MIT
keywords = Python
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
include_package_data = True
install_requires =
click>=8.0
colorlog>=6.8.2
requests>=2.32.3
humanize>=4.9.0
packaging>=24.0
tabulate>=0.9.0
packages = find:
zip_safe = True
[options.extras_require]
rich =
rich>=13.6.0
dev =
pytest>=7.0
freezegun>=1.2.0
quality =
flake8>=6.0.0
tox>=4.11.0
doc =
sphinx>=8.0.2
furo>=2024.8.6
sphinx-copybutton>=0.5.2
doc-live =
livereload>=2.6.0
release =
twine>=5.0.0
[options.packages.find]
where = .
exclude=
data
docs
tests
[options.entry_points]
console_scripts =
dependency_comb = dependency_comb.cli.entrypoint:cli_frontend
[wheel]
universal = 0
;;
;; Third-party packages configuration
;;
[flake8]
max-line-length = 88
exclude =
.git,
.venv,
build,
__pycache__
[tool:pytest]
addopts = -v --tb=long
python_files =
*.py
testpaths =
tests
[tox:tox]
minversion = 3.4.0
envlist = py{38,310}
[testenv]
commands =
pip install -e .[dev,rich]
pytest -vv tests