2019-07-13 09:35:30 +00:00
|
|
|
[metadata]
|
|
|
|
name = rsrcfork
|
2020-07-18 11:13:19 +00:00
|
|
|
version = attr: rsrcfork.__version__
|
2019-07-13 09:35:30 +00:00
|
|
|
url = https://github.com/dgelessus/python-rsrcfork
|
|
|
|
author = dgelessus
|
|
|
|
classifiers =
|
|
|
|
Development Status :: 4 - Beta
|
|
|
|
Intended Audience :: Developers
|
2019-08-24 22:00:56 +00:00
|
|
|
Topic :: Software Development :: Disassemblers
|
|
|
|
Topic :: System
|
2019-07-13 09:35:30 +00:00
|
|
|
Topic :: Utilities
|
|
|
|
License :: OSI Approved :: MIT License
|
2019-08-24 22:03:56 +00:00
|
|
|
Operating System :: MacOS :: MacOS 9
|
|
|
|
Operating System :: MacOS :: MacOS X
|
2019-07-13 09:35:30 +00:00
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3 :: Only
|
|
|
|
Programming Language :: Python :: 3.6
|
2019-08-24 22:04:12 +00:00
|
|
|
Programming Language :: Python :: 3.7
|
2020-04-19 14:21:25 +00:00
|
|
|
Programming Language :: Python :: 3.8
|
2019-07-13 09:35:30 +00:00
|
|
|
license = MIT
|
2020-04-19 14:20:07 +00:00
|
|
|
license_files =
|
|
|
|
LICENSE
|
2019-08-25 19:26:59 +00:00
|
|
|
description = A pure Python, cross-platform library/tool for reading Macintosh resource data, as stored in resource forks and ``.rsrc`` files
|
2019-07-13 09:35:30 +00:00
|
|
|
long_description = file: README.rst
|
|
|
|
long_description_content_type = text/x-rst
|
|
|
|
keywords =
|
|
|
|
rsrc
|
|
|
|
fork
|
|
|
|
resource
|
|
|
|
manager
|
|
|
|
macintosh
|
|
|
|
mac
|
|
|
|
macos
|
|
|
|
|
|
|
|
[options]
|
2020-07-06 21:57:25 +00: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 09:35:30 +00:00
|
|
|
python_requires = >=3.6
|
2019-09-24 23:51:23 +00:00
|
|
|
packages = find:
|
|
|
|
|
2020-07-06 21:57:25 +00:00
|
|
|
[options.package_data]
|
|
|
|
rsrcfork =
|
|
|
|
py.typed
|
|
|
|
|
2019-09-24 23:51:23 +00:00
|
|
|
[options.packages.find]
|
|
|
|
include =
|
2019-07-13 09:35:30 +00:00
|
|
|
rsrcfork
|
2019-09-24 23:51:23 +00:00
|
|
|
rsrcfork.*
|
2019-07-13 23:23:08 +00:00
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
rsrcfork = rsrcfork.__main__:main
|
2019-09-29 14:27:37 +00:00
|
|
|
|
2019-12-30 01:57:31 +00:00
|
|
|
[flake8]
|
2020-07-18 11:40:15 +00:00
|
|
|
extend-exclude =
|
2019-12-30 01:57:31 +00:00
|
|
|
.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
|
|
|
|
|
2019-09-29 14:27:37 +00:00
|
|
|
[mypy]
|
|
|
|
files=rsrcfork/**/*.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
|