Skip to content

Commit f2da50b

Browse files
committed
chore: update configuration
1 parent 5cd5f5c commit f2da50b

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

.editorconfig

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ indent_size = 4
88
end_of_line = lf
99
insert_final_newline = true
1010
trim_trailing_whitespace = true
11+
max_line_length = 88
1112

1213
[*.{json,yml}]
1314
indent_size = 2

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires = [
66

77
[tool.black]
88
line-length = 88
9-
python-version = ['py36', 'py37', 'py38']
9+
python-version = ['py36', 'py37', 'py38', 'py39']
1010
exclude = '''
1111
(
1212
_version.py

setup.cfg

+7-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
name = depinfo
33
url = https://github.com/Midnighter/dependency-info
44
download_url = https://pypi.org/project/depinfo/
5+
project_urls =
6+
Source Code = https://github.com/Midnighter/dependency-info
7+
Bug Tracker = https://github.com/Midnighter/dependency-info/issues
58
author = Moritz E. Beber
69
author_email = [email protected]
710
classifiers =
@@ -14,10 +17,12 @@ classifiers =
1417
Programming Language :: Python :: 3.6
1518
Programming Language :: Python :: 3.7
1619
Programming Language :: Python :: 3.8
20+
Programming Language :: Python :: 3.9
1721
Topic :: Utilities
1822
license = Apache-2.0
19-
description = List a package's direct dependencies and their versions.
23+
description = List any package's direct dependencies and their versions.
2024
long_description = file: README.rst
25+
long_description_content_type = text/x-rst
2126
keywords =
2227
dependency
2328
dependencies
@@ -28,7 +33,7 @@ keywords =
2833
zip_safe = True
2934
install_requires =
3035
pipdeptree >= 0.13.2
31-
python_requires = >=3.5.*
36+
python_requires = >=3.6
3237
tests_require =
3338
tox
3439
packages = find:

tox.ini

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
11
[tox]
2-
envlist = isort, black, flake8, safety, py3{6,7,8}
2+
envlist = isort, black, flake8, safety, py3{6,7,8,9}
33

4-
[travis]
5-
os =
6-
linux: isort, black, flake8, safety, py3{6,7,8}
4+
[gh-actions]
75
python =
86
3.6: safety, py36
97
3.7: isort, black, flake8, safety, py37
108
3.8: safety, py38
9+
3.9: safety, py39
1110

1211
[testenv]
1312
deps =
1413
pytest
15-
pytest-raises
1614
pytest-cov
15+
pytest-raises
1716
commands =
1817
pytest --cov=depinfo --cov-report=term {posargs}
1918

2019
[testenv:isort]
2120
skip_install = True
2221
deps=
23-
isort >5.0.5,<6.0
22+
isort
2423
commands=
25-
isort --check-only --diff {toxinidir}/src/depinfo {toxinidir}/tests
24+
isort --check-only --diff {toxinidir}/src/depinfo {toxinidir}/tests {toxinidir}/setup.py
2625

2726
[testenv:black]
2827
skip_install = True
@@ -38,13 +37,13 @@ deps=
3837
flake8-docstrings
3938
flake8-bugbear
4039
commands=
41-
flake8 {toxinidir}/src/depinfo {toxinidir}/tests
40+
flake8 {toxinidir}/src/depinfo {toxinidir}/tests {toxinidir}/setup.py
4241

4342
[testenv:safety]
4443
deps=
4544
safety
4645
commands=
47-
safety check
46+
safety check --full-report
4847

4948
################################################################################
5049
# Testing tools configuration #
@@ -69,7 +68,7 @@ omit =
6968

7069
[coverage:report]
7170
exclude_lines =
72-
# Have to re-enable the standard pragma
71+
# Have to re-enable the standard pragma
7372
pragma: no cover
7473
precision = 2
7574
omit =
@@ -90,16 +89,11 @@ ignore =
9089
skip =
9190
__init__.py
9291
_version.py
93-
line_length = 88
92+
profile = black
9493
indent = 4
95-
multi_line_output = 3
96-
include_trailing_comma = true
97-
force_grid_wrap = 0
98-
use_parentheses = true
9994
lines_after_imports = 2
100-
known_first_party =
101-
depinfo
95+
known_first_party = depinfo
10296
known_third_party =
103-
pkg_resources
104-
pipdeptree
10597
pytest
98+
setuptools
99+
versioneer

0 commit comments

Comments
 (0)