mirror of
https://github.com/iluvcapra/pycmx.git
synced 2025-12-31 08:50:54 +00:00
61 lines
1.4 KiB
TOML
61 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["flit_core >=3.2,<4"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[project]
|
|
name = "pycmx"
|
|
authors = [{name = "Jamie Hardt", email = "jamiehardt@me.com"}]
|
|
readme = "README.md"
|
|
dynamic = ["version", "description"]
|
|
requires-python = "~=3.6"
|
|
classifiers = [
|
|
'Development Status :: 5 - Production/Stable',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Topic :: Multimedia',
|
|
'Topic :: Multimedia :: Video',
|
|
'Topic :: Text Processing',
|
|
'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'
|
|
]
|
|
dependencies = [
|
|
|
|
]
|
|
keywords = [
|
|
'parser',
|
|
'film',
|
|
'broadcast'
|
|
]
|
|
|
|
[tool.flit.module]
|
|
name = "pycmx"
|
|
|
|
[project.optional-dependencies]
|
|
doc = [
|
|
'sphinx >= 5.3.0',
|
|
'sphinx_rtd_theme >= 1.1.1',
|
|
]
|
|
|
|
[project.urls]
|
|
Home = "https://github.com/iluvcapra/pycmx"
|
|
Documentation = "https://pycmx.readthedocs.io/"
|
|
Source = "https://github.com/iluvcapra/pycmx.git"
|
|
Issues = "https://github.com/iluvcapra/pycmx/issues"
|
|
|
|
[tool.pyright]
|
|
typeCheckingMode = "basic"
|
|
|
|
[tool.pylint]
|
|
max-line-length = 88
|
|
disable = [
|
|
"C0103", # (invalid-name)
|
|
"C0114", # (missing-module-docstring)
|
|
"C0115", # (missing-class-docstring)
|
|
"C0116", # (missing-function-docstring)
|
|
"R0903", # (too-few-public-methods)
|
|
"R0913", # (too-many-arguments)
|
|
"W0105", # (pointless-string-statement)
|
|
]
|