pt-launcher/setup.cfg

73 lines
1.6 KiB
INI

[metadata]
name = PTLaunch
version = attr: ptlaunch.__version__
description = Run Project Torque in a WINE prefix
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
license = CNPL 7+
license_file = LICENSE.md
author = zoey Mae
author_email = admin@barkshark.xyz
url = https://git.barkshark.xyz/izaliamae/pt-launcher
zip_safe = false
keywords = wine gaming
platform = linux
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
License :: License :: Other/Proprietary License
Operating System :: POSIX :: Linux
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 :: Games/Entertainment
Topic :: Software Development :: Libraries :: Python Modules
Typing :: Typed
[options]
include_package_data = true
python_requires = >= 3.8
packages =
ptlaunch
install_requires =
click >= 8.1.0
vdf >= 3.4
[options.extras_require]
doc =
furo == 2022.9.29
sphinx == 5.3.0
sphinx-external-toc == 0.3.1
dev =
flake8 == 6.1.0
flake8-annotations == 3.0.1
flake8-type-checking == 2.4.2
pylint == 3.0.1
[options.entry_points]
console_scripts =
ptlaunch = ptlaunch.cli:main
[bdist_wheel]
universal = true
[sdist]
formats = zip, gztar
[flake8]
extend-ignore = ANN101,ANN204,E128,E251,E261,E266,E301,E303,W191
extend-exclude = docs, test*.py
max-line-length = 100
indent-size = 4