-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
55 lines (46 loc) · 1.01 KB
/
setup.cfg
File metadata and controls
55 lines (46 loc) · 1.01 KB
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
[metadata]
name = squatter
description = Generates minimal setup.py to register a name on pypi
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
url = https://github.com/python-packaging/squatter
author = Amethyst Reese
author_email = amy@n7.gg
[options]
packages = squatter
setup_requires =
setuptools_scm >= 8
setuptools >= 38.3.0
python_requires = >=3.11
install_requires =
setuptools >= 38.3.0
[options.entry_points]
console_scripts =
squatter = squatter.__main__:cli
[check]
metadata = true
strict = true
[coverage:run]
branch = True
include = squatter/*
omit = squatter/tests/*
[coverage:report]
fail_under = 100
precision = 1
show_missing = True
skip_covered = True
[mypy]
ignore_missing_imports = True
[tox:tox]
envlist = py311, py312
[testenv]
deps = -rrequirements-dev.txt
whitelist_externals = make
commands =
make test
setenv =
py{311,312}: COVERAGE_FILE={envdir}/.coverage
[flake8]
ignore = E203, E231, E266, E302, E501, W503
max-line-length = 88