-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (51 loc) · 1.28 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
[metadata]
name = attr: setup.name
version = attr: makeclean.__version__
description = remove lists of files and folders
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Cube707/python-makeclean
author = Jan Wille
author_email = [email protected]
license = MIT
license_file = LICENCE
license_files = LICENCE
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Topic :: Software Development :: Build Tools
keywords =
make
makefiles
cleanup
project_urls =
Download = https://pypi.org/project/makeclean/#files
Bug Tracker = https://github.com/Cube707/python-makeclean/issues
Source Code = https://github.com/Cube707/python-makeclean
[options]
install_requires =
click >= 8
setuptools
wheel
python_requires = >=3.10
package_dir =
= src
[options.entry_points]
console_scripts =
makeclean = makeclean.__main__:cli
[flake8]
max-complexity = 12
max-line-length = 88
exclude =
__pycache__/
.git/
.venv/
[isort]
profile = black
src_paths = src
lines_after_imports = 2