Skip to content

Commit a37c05e

Browse files
committed
Update setup.py and tox
1 parent f8c4d5a commit a37c05e

2 files changed

Lines changed: 18 additions & 9 deletions

File tree

setup.cfg

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,28 @@ maintainer = Matej Dujava
88
maintainer_email = mdujava@redhat.com
99
url = https://github.com/3scale-qe/pytest-persistence
1010
long_description = file: README.md
11+
license = Apache-2.0
12+
license_files = LICENSE
1113
classifiers =
12-
Programming Language :: Python :: 3
13-
Programming Language :: Python :: 3.9
14-
Programming Language :: Python :: 3.10
15-
Programming Language :: Python :: 3.11
16-
Programming Language :: Python :: 3.12
17-
Programming Language :: Python :: 3.13
18-
Framework :: Pytest
1914
Operating System :: OS Independent
20-
License :: OSI Approved :: MIT License
15+
Intended Audience :: Developers
16+
Framework :: Pytest
17+
Programming Language :: Python :: 3
2118

2219
[options]
2320
packages = pytest_persistence
21+
install_requires =
22+
pytest
2423

2524
[options.entry_points]
2625
pytest11 =
2726
persistence = pytest_persistence.plugin
27+
28+
[flake8]
29+
max-line-length = 120
30+
ignore = E203,W503
31+
32+
[mypy]
33+
ignore_missing_imports = True
34+
check_untyped_defs = true
35+
local_partial_types = true

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[tox]
2-
envlist = py-pytest{744,800,-latest}
2+
envlist = py-pytest{744,800,840,-latest}
33

44
[testenv]
55
deps =
66
pytest744: pytest==7.4.4
77
pytest800: pytest==8.0.0
8+
pytest840: pytest==8.4.0
89
pytest-latest: pytest
910
pytest-xdist
1011
commands =

0 commit comments

Comments
 (0)