-
-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.37 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "rivalcfg"
version = "4.17.0"
authors = [
{name = "Fabien LOISON"},
]
description = "Configure SteelSeries gaming mice"
readme = "README.rst"
keywords = ["steelseries", "rival", "sensei", "prime", "aerox", "mouse", "hid"]
license = "WTFPL"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"hidapi>=0.14.0",
]
[project.optional-dependencies]
dev = [
"Sphinx",
"black",
"flake8",
"flake8-pyproject",
"nox",
"pytest",
"sphinx-rtd-theme",
"validate-pyproject",
]
[project.scripts]
rivalcfg = "rivalcfg.__main__:main"
[project.urls]
homepage = "https://rivalcfg.flozz.org/"
download = "https://rivalcfg.flozz.org/download.html"
source = "https://github.com/flozz/rivalcfg"
documentation = "https://flozz.github.io/rivalcfg/"
changelog = "https://github.com/flozz/rivalcfg#changelog"
issues = "https://github.com/flozz/rivalcfg/issues"
Chat = "https://discord.gg/P77sWhuSs4"
donate = "https://github.com/flozz/rivalcfg#supporting-this-project"
[tool.black]
target-version = ["py310"]
[tool.flake8]
ignore = [
"E241", # multiple spaces after ‘,’
"E203", # whitespace before ':'
# ↓↓ Black handles that its way... :)
"W503", # line break before binary operator
"E501", # line too long (> 79 characters)
]