mirror of
https://github.com/dgelessus/python-rsrcfork.git
synced 2024-11-25 19:31:44 +00:00
70d51c2907
Because it doesn't use any reStructuredText-specific features and Markdown syntax is less annoying.
93 lines
2.2 KiB
INI
93 lines
2.2 KiB
INI
[metadata]
|
|
name = rsrcfork
|
|
version = attr: rsrcfork.__version__
|
|
url = https://github.com/dgelessus/python-rsrcfork
|
|
author = dgelessus
|
|
classifiers =
|
|
Development Status :: 4 - Beta
|
|
Intended Audience :: Developers
|
|
License :: OSI Approved :: MIT License
|
|
Operating System :: MacOS :: MacOS 9
|
|
Operating System :: MacOS :: MacOS X
|
|
Operating System :: OS Independent
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: 3.6
|
|
Programming Language :: Python :: 3.7
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
Topic :: Software Development :: Disassemblers
|
|
Topic :: System
|
|
Topic :: Utilities
|
|
Typing :: Typed
|
|
license = MIT
|
|
license_files =
|
|
LICENSE
|
|
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
|
|
keywords =
|
|
rsrc
|
|
fork
|
|
resource
|
|
manager
|
|
macintosh
|
|
mac
|
|
macos
|
|
|
|
[options]
|
|
# 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
|
|
python_requires = >=3.6
|
|
packages = find:
|
|
package_dir =
|
|
= src
|
|
|
|
[options.package_data]
|
|
rsrcfork =
|
|
py.typed
|
|
|
|
[options.packages.find]
|
|
where = src
|
|
|
|
[options.entry_points]
|
|
console_scripts =
|
|
rsrcfork = rsrcfork.__main__:main
|
|
|
|
[flake8]
|
|
extend-exclude =
|
|
.mypy_cache/,
|
|
build/,
|
|
dist/,
|
|
|
|
# The following issues are ignored because they do not match our code style:
|
|
ignore =
|
|
E226, # missing whitespace around arithmetic operator
|
|
E261, # at least two spaces before inline comment
|
|
E501, # line too long
|
|
W293, # blank line contains whitespace
|
|
W503, # line break before binary operator
|
|
|
|
# flake8-tabs configuration
|
|
use-flake8-tabs = true
|
|
blank-lines-indent = always
|
|
indent-tabs-def = 1
|
|
|
|
[mypy]
|
|
files=src/**/*.py
|
|
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
|