File: pyproject.toml

package info (click to toggle)
psrecord 1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180 kB
  • sloc: python: 295; makefile: 7
file content (59 lines) | stat: -rw-r--r-- 1,091 bytes parent folder | download | duplicates (2)
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
version_file = "psrecord/_version.py"

[project]
name = "psrecord"
dynamic = [
    "version"
]
authors = [
    { name = "Thomas Robitaille", email = "thomas.robitaille@gmail.com" },
]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Programming Language :: Python",
    "License :: OSI Approved :: BSD License",
]
description = "Python package to record activity from processes"
readme = "README.rst"
dependencies = [
    "psutil>=5.6",
]

[project.optional-dependencies]
test = [
    "pytest>=7.0",
]
plot = [
    "matplotlib",
]

[project.scripts]
psrecord = "psrecord.main:main"

[project.license]
text = "Simplified BSD License"

[project.urls]
Homepage = "https://github.com/astrofrog/psrecord"

[tool.setuptools]
zip-safe = true
provides = [
    "psrecord",
]
include-package-data = false

[tool.setuptools.packages.find]
namespaces = false

[tool.ruff]
lint.select = ["F", "E", "W", "I", "UP"]
line-length = 100

[tool.black]
line-length = 100