summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: cc7f521a38092291d1974004669747eeb1071874 (plain)
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
[metadata]
name = git-crecord
version = 20230226.0
url = https://github.com/andrewshadura/git-crecord
author = Andrej Shadura
author-email = andrew@shadura.me
description = interactively select chunks to commit with Git
long_description = file: README.rst
long_description_content_type = text/x-rst
license = GPL-2+
license_file = COPYING
classifier = 
	Development Status :: 4 - Beta
	Environment :: Console :: Curses
	Intended Audience :: Developers
	License :: OSI Approved :: GNU General Public License (GPL)
	Operating System :: OS Independent
	Programming Language :: Python
	Programming Language :: Python :: 3.9
	Programming Language :: Python :: 3.10
	Topic :: Software Development :: Version Control

[options]
python_requires = >= 3.9
packages = find:
setup_requires = 
	docutils >= 0.12
include_package_data = True
tests_require = git-crecord[test]

[options.extras_require]
test = 
	pytest >= 6
lint = 
	flake8
	flake8-blind-except
	flake8-builtins
	flake8-commas
	flake8-comprehensions
	flake8-docstrings
	flake8-isort

[tool:pytest]
addopts = --doctest-modules
doctest_optionflags = NORMALIZE_WHITESPACE

[options.entry_points]
console_scripts = 
	git-crecord = git_crecord.main:main
	git-cstage = git_crecord.main:main

[flake8]
doctests = yes
exclude = .*,build,dist,__pycache__
max-line-length = 130
ignore = 
	E261,E127,E128,
	W503,W504,
	D300,D400,
	D100,D101,D102,D103,D104,D105,D107,
	D205,D209,

[isort]
multi_line_output = 3
include_trailing_comma = yes
reverse_relative = yes

[egg_info]
tag_build = 
tag_date = 0