-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
66 lines (60 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "irc3"
version = "1.1.11.dev0"
description = "plugable irc client library based on asyncio with DCC and SASL support"
readme = "README.rst"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Gael Pasgrimaud", email = "gael@gawel.org" }]
keywords = ["irc", "dcc", "asyncio"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"Development Status :: 5 - Production/Stable",
]
dependencies = ["venusian>=3.0", "docopt"]
[project.optional-dependencies]
test = [
"aiocron",
"aiohttp",
"aiohttp-wsgi",
"feedparser",
"irc3-plugins-test",
"pysocks",
"pytest",
"pytest-aiohttp",
"pytest-asyncio<1.0",
"redis",
"requests",
"twitter",
]
web = [
"aiohttp",
"aiohttp-wsgi",
]
[project.scripts]
irc3 = "irc3:run"
irc3d = "irc3d:run"
[project.urls]
Homepage = "https://github.com/gawel/irc3/"
[tool.setuptools.packages.find]
exclude = ["docs", "tests"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
addopts = [
"-p no:warnings",
"-p no:unraisableexception",
"--doctest-modules",
"--doctest-glob='*.rst'",
]
ignore = [
"CHANGES.rst",
"examples/*",
"docs/conf.py",
"irc3/_*.py",
"irc3/testing.py",
]