-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
40 lines (35 loc) · 820 Bytes
/
setup.cfg
File metadata and controls
40 lines (35 loc) · 820 Bytes
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
[metadata]
name = isomodder
version = 0.1.0
description = High-level API for modifying Linux ISOs.
author = Will Brown
author_email = 5326080+wpbrown@users.noreply.github.com
license = mit
long-description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8
url = https://github.com/wpbrown/isomodder
platforms = any
classifiers =
Development Status :: 2 - Pre-Alpha
Programming Language :: Python
[options]
zip_safe = False
packages = find:
include_package_data = True
package_dir =
=src
install_requires =
pycdlib
[options.packages.find]
where = src
[options.package_data]
isomodder=py.typed
[flake8]
max-line-length = 110
extend-ignore = E203, W503
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 110