2019-07-13 11:35:30 +02:00
|
|
|
[metadata]
|
|
|
|
name = rsrcfork
|
2020-07-18 13:13:19 +02:00
|
|
|
version = attr: rsrcfork.__version__
|
2019-07-13 11:35:30 +02:00
|
|
|
url = https://github.com/dgelessus/python-rsrcfork
|
|
|
|
author = dgelessus
|
|
|
|
classifiers =
|
|
|
|
Development Status :: 4 - Beta
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: MIT License
|
2019-08-25 00:03:56 +02:00
|
|
|
Operating System :: MacOS :: MacOS 9
|
|
|
|
Operating System :: MacOS :: MacOS X
|
2019-07-13 11:35:30 +02:00
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3 :: Only
|
|
|
|
Programming Language :: Python :: 3.6
|
2019-08-25 00:04:12 +02:00
|
|
|
Programming Language :: Python :: 3.7
|
2020-04-19 16:21:25 +02:00
|
|
|
Programming Language :: Python :: 3.8
|
2020-11-01 19:09:43 +01:00
|
|
|
Programming Language :: Python :: 3.9
|
2021-11-21 18:48:12 +01:00
|
|
|
Programming Language :: Python :: 3.10
|
2023-02-14 21:09:17 +01:00
|
|
|
Programming Language :: Python :: 3.11
|
2020-08-08 19:30:26 +02:00
|
|
|
Topic :: Software Development :: Disassemblers
|
|
|
|
Topic :: System
|
|
|
|
Topic :: Utilities
|
2020-08-08 19:36:23 +02:00
|
|
|
Typing :: Typed
|
2019-07-13 11:35:30 +02:00
|
|
|
license = MIT
|
2020-04-19 16:20:07 +02:00
|
|
|
license_files =
|
|
|
|
LICENSE
|
2022-09-08 10:29:29 +02:00
|
|
|
description = A pure Python, cross-platform library/tool for reading Macintosh resource data, as stored in resource forks and .rsrc files
|
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
2019-07-13 11:35:30 +02:00
|
|
|
keywords =
|
|
|
|
rsrc
|
|
|
|
fork
|
|
|
|
resource
|
|
|
|
manager
|
|
|
|
macintosh
|
|
|
|
mac
|
|
|
|
macos
|
|
|
|
|
|
|
|
[options]
|
2020-07-06 23:57:25 +02:00
|
|
|
# mypy can only find type hints in the package if zip_safe is set to False,
|
|
|
|
# see https://mypy.readthedocs.io/en/latest/installed_packages.html#making-pep-561-compatible-packages
|
|
|
|
zip_safe = False
|
2019-07-13 11:35:30 +02:00
|
|
|
python_requires = >=3.6
|
2019-09-25 01:51:23 +02:00
|
|
|
packages = find:
|
2021-11-21 19:15:51 +01:00
|
|
|
package_dir =
|
|
|
|
= src
|
2019-09-25 01:51:23 +02:00
|
|
|
|
2020-07-06 23:57:25 +02:00
|
|
|
[options.package_data]
|
|
|
|
rsrcfork =
|
|
|
|
py.typed
|
|
|
|
|
2019-09-25 01:51:23 +02:00
|
|
|
[options.packages.find]
|
2021-11-21 19:15:51 +01:00
|
|
|
where = src
|
2019-07-14 01:23:08 +02:00
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
rsrcfork = rsrcfork.__main__:main
|
2019-09-29 16:27:37 +02:00
|
|
|
|
2019-12-30 02:57:31 +01:00
|
|
|
[flake8]
|
2020-07-18 13:40:15 +02:00
|
|
|
extend-exclude =
|
2019-12-30 02:57:31 +01:00
|
|
|
.mypy_cache/,
|
|
|
|
build/,
|
|
|
|
dist/,
|
|
|
|
|
|
|
|
# The following issues are ignored because they do not match our code style:
|
|
|
|
ignore =
|
2022-09-08 10:46:45 +02:00
|
|
|
# These E1 checks report many false positives for code that is (consistently) indented with tabs alone.
|
2023-02-14 21:30:10 +01:00
|
|
|
# indentation contains mixed spaces and tabs
|
|
|
|
E101,
|
|
|
|
# over-indented
|
|
|
|
E117,
|
|
|
|
# continuation line over-indented for hanging indent
|
|
|
|
E126,
|
|
|
|
# missing whitespace around arithmetic operator
|
|
|
|
E226,
|
|
|
|
# at least two spaces before inline comment
|
|
|
|
E261,
|
|
|
|
# line too long
|
|
|
|
E501,
|
|
|
|
# indentation contains tabs
|
|
|
|
W191,
|
|
|
|
# blank line contains whitespace
|
|
|
|
W293,
|
|
|
|
# line break before binary operator
|
|
|
|
W503,
|
2019-12-30 02:57:31 +01:00
|
|
|
|
2019-09-29 16:27:37 +02:00
|
|
|
[mypy]
|
2021-11-21 19:15:51 +01:00
|
|
|
files=src/**/*.py
|
2019-09-29 16:27:37 +02:00
|
|
|
python_version = 3.6
|
|
|
|
|
|
|
|
disallow_untyped_calls = True
|
|
|
|
disallow_untyped_defs = True
|
|
|
|
disallow_untyped_decorators = True
|
|
|
|
|
|
|
|
no_implicit_optional = True
|
|
|
|
|
|
|
|
warn_unused_ignores = True
|
|
|
|
warn_unreachable = True
|
|
|
|
|
|
|
|
warn_redundant_casts = True
|