File: pyproject.toml

package info (click to toggle)
itango 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,984 kB
  • sloc: python: 1,476; makefile: 14
file content (58 lines) | stat: -rw-r--r-- 1,432 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=77.0.3", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"

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

[project]
name = "itango"
description = "An interactive Tango client"
dynamic = ["version"]
authors = [{ name = "Tiago Coutinho" }]
maintainers = [{ name = "Benjamin Bertrand" }]
requires-python = ">=3.9"
keywords = ["pytango", "ipython"]
readme = "README.rst"
license = "LGPL-3.0-or-later"
dependencies = ["pytango>=9.3.0", "ipython>=8.5,<10.0", "packaging"]
classifiers = [
    "Framework :: IPython",
    "Intended Audience :: Developers",
    "Intended Audience :: Science/Research",
    "Programming Language :: Python :: 3",
    "Topic :: System :: Shells",
]

[project.optional-dependencies]
qt = ["qtconsole"]
tests = ["pytest", "pytest-cov"]

[tool.setuptools]
packages = ["itango"]

[project.urls]
Homepage = "https://www.tango-controls.org/"
Repository = "https://gitlab.com/tango-controls/itango"
Documentation = "https://itango.readthedocs.io"

[project.scripts]
itango = "itango:run"
itango3 = "itango:run"

[project.gui-scripts]
itango-qt = "itango:run_qt"
itango3-qt = "itango:run_qt"

[tool.ruff.lint]
# Enable flake8-bugbear (B) and (I) isort rules, in addition to the defaults.
select = ["E4", "E7", "E9", "F", "B", "I"]

[tool.pytest.ini_options]
addopts = "-v --cov"
testpaths = [
    "tests"
]

[tool.coverage.run]
source_pkgs = ["itango"]