|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "async-irc" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "A simple asyncio.Protocol implementation designed for IRC" |
| 9 | +readme = "README.md" |
| 10 | +license = "MIT" |
| 11 | +requires-python = ">=3.8" |
| 12 | +authors = [ |
| 13 | + { name = "linuxdaemon", email = "[email protected]" }, |
| 14 | +] |
| 15 | +keywords = [ |
| 16 | + "async-irc", |
| 17 | + "asyncio", |
| 18 | + "asyncirc", |
| 19 | + "irc", |
| 20 | + "irc-framework", |
| 21 | +] |
| 22 | +classifiers = [ |
| 23 | + "Development Status :: 3 - Alpha", |
| 24 | + "License :: OSI Approved :: MIT License", |
| 25 | + "Programming Language :: Python :: 3.8", |
| 26 | +] |
| 27 | +dependencies = [ |
| 28 | + "py-irclib", |
| 29 | +] |
| 30 | + |
| 31 | +[project.urls] |
| 32 | +Homepage = "https://github.com/TotallyNotRobots/async-irc" |
| 33 | + |
| 34 | +[tool.hatch.version] |
| 35 | +path = "asyncirc/__init__.py" |
| 36 | + |
| 37 | +[tool.hatch.build.targets.sdist] |
| 38 | +include = [ |
| 39 | + "/asyncirc", |
| 40 | +] |
| 41 | + |
| 42 | +[tool.hatch.build.targets.wheel] |
| 43 | +packages = [ |
| 44 | + "asyncirc", |
| 45 | +] |
| 46 | + |
| 47 | +[tool.isort] |
| 48 | +line_length = 80 |
| 49 | +multi_line_output = 3 |
| 50 | +include_trailing_comma = true |
| 51 | +use_parentheses = true |
| 52 | +known_first_party = ["asyncirc", "tests"] |
| 53 | +float_to_top = true |
| 54 | + |
| 55 | +[tool.black] |
| 56 | +line-length = 80 |
| 57 | +target-version = ['py38'] |
| 58 | +include = '\.pyi?$' |
| 59 | +exclude = ''' |
| 60 | +( |
| 61 | + /( |
| 62 | + \.eggs # exclude a few common directories in the |
| 63 | + | \.git # root of the project |
| 64 | + | \.hg |
| 65 | + | \.mypy_cache |
| 66 | + | \.tox |
| 67 | + | \.venv |
| 68 | + | _build |
| 69 | + | buck-out |
| 70 | + | build |
| 71 | + | dist |
| 72 | + | venv |
| 73 | + )/ |
| 74 | +) |
| 75 | +''' |
| 76 | + |
| 77 | +[tool.pylint.main] |
| 78 | +analyse-fallback-blocks = true |
| 79 | +py-version = "3.8" |
| 80 | + |
| 81 | +[tool.pylint.messages_control] |
| 82 | +disable = [ |
| 83 | +] |
| 84 | + |
| 85 | +enable = ["c-extension-no-member"] |
| 86 | + |
| 87 | +[tool.pylint.typecheck] |
| 88 | +generated-members = "(requests\\.)?codes\\.[a-zA-Z0-9_]+" |
| 89 | + |
| 90 | +[tool.mypy] |
| 91 | +namespace_packages = true |
| 92 | +python_version = "3.8" |
| 93 | +warn_unused_configs = true |
| 94 | +strict = false |
| 95 | +strict_optional = false |
| 96 | +ignore_missing_imports = true |
| 97 | +check_untyped_defs = true |
| 98 | +show_error_codes = true |
| 99 | +warn_unused_ignores = true |
| 100 | +warn_redundant_casts = true |
| 101 | +# strict_equality = true |
0 commit comments