-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
81 lines (76 loc) · 1.77 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
[metadata]
name = oschmod
description = Windows and Linux compatible chmod
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
version = 0.3.12
author = YakDriver
author_email = [email protected]
url = https://github.com/yakdriver/oschmod
license = Apache Software License 2.0
platforms =
Linux
Windows
Darwin
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Utilities
[options]
install_requires =
pywin32;platform_system=="Windows"
packages = oschmod
include_package_data = True
[options.entry_points]
console_scripts =
oschmod = oschmod.cli:main
ochmod = oschmod.cli:main
[bdist_wheel]
universal = 1
[tool:pytest]
mock_use_standalone_module = true
norecursedirs =
.git
.tox
.env
__pycache__
dist
build
htmlcov
python_files =
test_*.py
*_test.py
tests.py
addopts =
-rxEfsw
--strict
--doctest-modules
--doctest-glob=\*.md
--tb=short
[flake8]
exclude =
.tox,
.git,
__pycache__,
.eggs,
*.egg,
build,
dist,
htmlcov,
*/static/salt/formulas/*
ignore = FI15,FI16,FI17,FI5,D107,W503,W504