-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
76 lines (62 loc) · 1.64 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
[bdist_wheel]
universal = 1
[coverage:run]
branch = true
source = src
[coverage:report]
show_missing = true
[flake8]
max_line_length = 90
max_complexity = 10
[isort]
skip = .tox
atomic = true
line_length = 90
multi_line_output = 4
include_trailing_comma = true
known_standard_library = mock
known_third_party = tox,py
known_first_party = tox_factor
[metadata]
name = tox-factor
version = 0.1.2
description = Run tox testenvs that match a given factor
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
license = BSD 3-Clause License
license_file = LICENSE
author = Ryan P Kilby
; maintainer = Ryan P Kilby, Oliver Bestwalter
; maintainer-email = [email protected]
url = https://github.com/rpkilby/tox-factor
project_urls =
Source=https://github.com/rpkilby/tox-factor
Tracker=https://github.com/rpkilby/tox-factor/issues
classifiers =
Development Status :: 3 - Alpha
Framework :: tox
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: POSIX
Operating System :: Microsoft :: Windows
Operating System :: MacOS :: MacOS X
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Software Development :: Testing
[options]
install_requires =
tox
package_dir =
=src
packages = find:
[options.packages.find]
where = src
[options.entry_points]
tox =
factor = tox_factor.hooks