Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move all setup.cfg configuration into pyproject.toml #177

Merged
merged 2 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 51 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,58 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "python-osc"
version="1.9.0"
description="Open Sound Control server and client implementations in pure Python"
readme="README.rst"
requires-python=">=3.10"
license = {file = "LICENSE.txt"}
version = "1.9.0"
description = "Open Sound Control server and client implementations in pure Python"
readme = "README.rst"
requires-python = ">=3.10"
license = { file = "LICENSE.txt" }
authors = [
{name = "attwad", email = "[email protected]"},
{ name = "attwad", email = "[email protected]" },
]
keywords = ["osc", "sound", "midi", "music"]
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: Freely Distributable',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: System :: Networking',
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: Freely Distributable",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: System :: Networking",
]

[project.urls]
Repository = "https://github.com/attwad/python-osc"
Repository = "https://github.com/attwad/python-osc"

[tool.mypy]
# Would be great to turn this on, however there's too many cases it would break
# right now.
# disallow_any_generics = true

disallow_subclassing_any = true

# Allow functions _without_ type annotations, but require that annotations be
# complete (possibly including the `Any` type) where they are present.
disallow_incomplete_defs = true
# check_untyped_defs = true
disallow_untyped_decorators = true

# # Would be great to turn these on eventually
# no_implicit_optional = true
# strict_optional = true

warn_redundant_casts = true
warn_unused_ignores = true
show_error_codes = true
# # Would be great to turn this on eventually
# # warn_return_any = true
# warn_unreachable = true

# implicit_reexport = False
# strict_equality = true

scripts_are_modules = true
warn_unused_configs = true

enable_error_code = "ignore-without-code"
35 changes: 0 additions & 35 deletions setup.cfg

This file was deleted.

Loading