forked from sarugaku/pythonfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
100 lines (92 loc) · 1.91 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[metadata]
name = pythonfinder
description = A cross-platform python discovery tool to help locate python on any system.
url = https://github.com/sarugaku/pythonfinder
author = Dan Ryan
author_email = dan@danryan.co
long_description = file: README.rst
license = MIT
license_file = LICENSE.txt
keywords =
pythonfinder
path
finder
pathfinder
which
pep514
pyenv
classifier =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Build Tools
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
[options]
zip_safe = true
python_requires = >=3.7
setup_requires = setuptools>=41.0
include_package_data = true
package_data =
LICENSE*
README*
install_requires =
cached-property
packaging>=22.0
pydantic>=1.10.7
[options.packages.find]
where = src
exclude =
tests
docs
tasks
[options.extras_require]
cli =
click
tests =
pytest
pytest-cov
pytest-timeout
coverage<5
dev =
parver
wheel>=0.33.4
invoke
twine
lxml
pre-commit
towncrier
[options.entry_points]
console_scripts =
pyfinder = pythonfinder.cli:cli
[tool:pytest]
addopts = -ra --timeout 300 --cov
testpaths = tests/
norecursedirs = .* build dist news tasks docs
markers =
parse
skip_nt
is_python
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
[bdist_wheel]
universal = 1
[mypy]
ignore_missing_imports=true
follow_imports=skip
html_report=mypyhtml
python_version=3.7
[pytype]
python_version = 3.7
inputs =
src/pythonfinder/
exclude =
**/*_test.py
**/test_*.py
**/*_test_*.py