@@ -9,6 +9,65 @@ requires = [
9
9
]
10
10
build-backend = ' setuptools.build_meta'
11
11
12
+ [project ]
13
+ name = " tox-gh-actions"
14
+ description = " Seamless integration of tox into GitHub Actions"
15
+ readme = " README.md"
16
+ requires-python = " >=3.7"
17
+ license = {text = " MIT" }
18
+ authors = [
19
+ {name = " Yusuke Miyazaki" , email = " miyazaki.dev@gmail.com" },
20
+ ]
21
+ maintainers = [
22
+ {name = " Yusuke Miyazaki" , email = " miyazaki.dev@gmail.com" },
23
+ ]
24
+ keywords = [" tox" , " github" , " github-actions" , " ci" , " testing" ]
25
+ classifiers = [
26
+ " Development Status :: 5 - Production/Stable" ,
27
+ " Framework :: tox" ,
28
+ " Intended Audience :: Developers" ,
29
+ " License :: OSI Approved :: MIT License" ,
30
+ " Operating System :: OS Independent" ,
31
+ " Programming Language :: Python :: 3" ,
32
+ " Programming Language :: Python :: 3 :: Only" ,
33
+ " Programming Language :: Python :: 3.7" ,
34
+ " Programming Language :: Python :: 3.8" ,
35
+ " Programming Language :: Python :: 3.9" ,
36
+ " Programming Language :: Python :: 3.10" ,
37
+ " Programming Language :: Python :: 3.11" ,
38
+ " Programming Language :: Python :: 3.12" ,
39
+ " Programming Language :: Python :: 3.13" ,
40
+ " Programming Language :: Python :: Implementation :: CPython" ,
41
+ " Programming Language :: Python :: Implementation :: PyPy" ,
42
+ " Topic :: Software Development :: Libraries" ,
43
+ " Topic :: Software Development :: Testing" ,
44
+ " Topic :: Utilities" ,
45
+ " Typing :: Typed" ,
46
+ ]
47
+ dependencies = [
48
+ " tox >=4, <5" ,
49
+ ]
50
+ dynamic = [" version" ]
51
+
52
+ [project .urls ]
53
+ Homepage = " https://github.com/ymyzk/tox-gh-actions"
54
+ Issue = " https://github.com/ymyzk/tox-gh-actions/issues"
55
+ Sponsor = " https://github.com/sponsors/ymyzk"
56
+
57
+ [project .entry-points .tox ]
58
+ tox_gh_actions = " tox_gh_actions.plugin"
59
+
60
+ [project .optional-dependencies ]
61
+ testing = [
62
+ " devpi-process" ,
63
+ " mypy; platform_python_implementation=='CPython'" ,
64
+ " pre-commit" ,
65
+ " pytest >=7" ,
66
+ " pytest-cov >=4" ,
67
+ " pytest-mock >=3" ,
68
+ " pytest-randomly >=3" ,
69
+ ]
70
+
12
71
[tool .coverage .paths ]
13
72
# For combining source file paths correctly
14
73
source = [
0 commit comments