-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (42 loc) · 1.5 KB
/
pyproject.toml
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
[build-system]
requires = ["pytest", "pytest-cov", "setuptools>=61.0", "PyInstaller", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "simonsays_drgreengiant"
version = "2.1.0"
authors = [{ name = "Simon Howroyd", email = "howroydlsu@gmail.com" }]
description = "A Twitch Plays style programme to allow users in Twitch chats to control the broadcasters mouse and keyboard"
keywords = ["twitch", "chat", "twitchplays", "troll"]
readme = "README.md"
requires-python = ">=3.11.4"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"Topic :: Games/Entertainment",
]
dynamic = ["dependencies"]
[project.urls]
"Homepage" = "https://github.com/howroyd/simonsays"
"Repository" = "https://github.com/howroyd/simonsays"
"Bug Tracker" = "https://github.com/howroyd/simonsays/issues"
[project.optional-dependencies]
dev = ["ruff"]
[tool.setuptools.packages.find]
where = ["src", "tests"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.pytest.ini_options]
minversion = "2.0"
python_files = ["tests/test_*.py", "tests/*_test.py"]
addopts = [
"--cov=.",
"--cov-report=html",
"--cov-report=term-missing",
# "--cov-fail-under=95",
]
filterwarnings = "ignore::DeprecationWarning"