-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
72 lines (59 loc) · 1.52 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
[bumpversion]
current_version = 0.2.7
tag = true
commit = true
[bumpversion:file:setup.cfg]
[bumpversion:file:c_formatter_42/__init__.py]
parse = __version__ = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
[metadata]
name = c_formatter_42
version = 0.2.7
description = formatting tool complient with 42 school's norm
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dawnbeen/c_formatter_42
project_urls =
Tracker = https://github.com/dawnbeen/c_formatter_42/issues
classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: C
Intended Audience :: Developers
Environment :: Console
Operating System :: Microsoft :: Windows
Operating System :: MacOS
Operating System :: POSIX :: Linux
[options]
packages = find:
python_requires = >=3.7
[options.package_data]
* =
data/*
data/.*
[options.exclude_package_data]
c_formatter_42 = test_*
[options.entry_points]
console_scripts =
c_formatter_42 = c_formatter_42.__main__:main
[flake8]
ignore = E221,W503,E241
select = E,F,W,C4,N
max-line-length = 100
[mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
[tool:pytest]
testpaths = tests
addopts = --cov=c_formatter_42 --cov-report=term-missing
[coverage:run]
source = c_formatter_42
[coverage:report]
exclude_lines =
pragma: no cover
sys.platform
NotImplementedError
[tool:isort]
profile = black