-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (46 loc) · 1.35 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
[build-system]
requires = ['setuptools >= 61.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'rwmem'
version = '0.1'
dependencies = []
requires-python = '>=3.10'
authors = [
{ name = 'Tomi Valkeinen', email = 'tomi.valkeinen@ideasonboard.com' },
]
maintainers = [
{ name = 'Tomi Valkeinen', email = 'tomi.valkeinen@ideasonboard.com' },
]
description = 'rwmem'
readme = 'README.md'
license = { file = 'LICENSE.md' }
keywords = ['linux', 'rwmem', 'memory']
classifiers = [
'Programming Language :: Python',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
]
[project.urls]
Homepage = 'https://github.com/tomba/rwmem'
Repository = 'https://github.com/tomba/rwmem.git'
'Bug Tracker' = 'https://github.com/tomba/rwmem/issues'
[project.optional-dependencies]
dev = ["ruff", "pytest", "tabulate", "pylint"]
all = ["rwmem[dev]"]
[tool.setuptools]
packages = ["rwmem"]
package-dir = {"" = "py"}
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ['E', 'W', 'F', 'FA', 'Q', 'UP', 'PLE', 'PLW']
ignore = ['E741', 'E501', 'Q001', 'UP032'] # TODO: fix E501
[tool.ruff.lint.per-file-ignores]
'__init__.py' = ['F401', 'F403']
[tool.ruff.lint.flake8-quotes]
inline-quotes = 'single'
multiline-quotes = 'single'
[tool.ruff.format]
quote-style = 'single'