aputils/setup.cfg

63 lines
1.6 KiB
INI

[metadata]
name = aputils
version = attr: aputils.__version__
author = Izalia Mae
author_email = izalia@barkshark.xyz
url = https://docs.barkshark.xyz/aputils
description = Various classes and functions for ActivityPub servers
long_description = file: README.md
long_description_content_type = text/markdown
license = CNPL 7+
license_file = LICENSE.md
platform = any
keywords = python module
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Bug Tracker = https://git.barkshark.xyz/barkshark/aputils/issues
Documentation = https://docs.barkshark.xyz/aputils
Source Code = https://git.barkshark.xyz/barkshark/aputils
[options]
include_package_data = true
python_requires = >= 3.8
packages =
aputils
install_requires = file: requirements.txt
setup_requires =
setuptools >= 38.3.0
[options.extras_require]
aiohttp = aiohttp >= 3.9.1
docs = file: docs/requirements.txt
dev =
flake8 == 6.1.0
flake8-annotations == 3.0.1
flake8-type-checking == 2.4.2
pylint == 3.0.1
[options.entry_points]
pyinstaller40 =
hook-dirs = aputils:get_hook_dirs
[bdist_wheel]
universal = false
[sdist]
formats = zip, gztar
[flake8]
extend-ignore = ANN101,ANN204,E128,E251,E261,E266,E301,E303,W191
extend-exclude = docs, test*.py
exclude = tests/
max-line-length = 100
indent-size = 4