-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
86 lines (67 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "microscope-cockpit"
version = "2.9.2+dev"
description = "Hardware agnostic microscope user interface"
readme = "README.rst"
license = {file = "COPYING"}
# Names are in alphabetical order. This is the list of active
# maintainers. For the full list of people that have contributed to
# the development of the project, see `doc/authors.rst`.
maintainers = [
{name = "David Miguel Susano Pinto"},
{name = "Ian Dobbie"},
{name = "Julio Mateos-Langerak"},
]
# https://pypi.org/classifiers
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.9"
dependencies = [
"PyOpenGL",
"Pyro4>=4.22",
"freetype-py",
"matplotlib",
"microscope>=0.7",
"numpy",
"pyserial",
"scipy",
"wxPython>=4.1",
]
[project.gui-scripts]
cockpit = "cockpit:_setuptools_entry_point"
[project.urls]
Homepage = "https://www.microscope-cockpit.org"
Download = "https://pypi.org/project/microscope-cockpit/"
Source = "https://github.com/microscope-cockpit/cockpit/"
Tracker = "https://github.com/microscope-cockpit/cockpit/issues/"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-dir]
cockpit = "cockpit"
[tool.isort]
profile = "black"
line_length = 79
[tool.black]
line-length = 79
[tool.pylint.FORMAT]
max-line-length = 79
[tool.pytest.ini_options]
testpaths = ["cockpit/testsuite",]
[tool.tox]
legacy_tox_ini = """
[tox]
# We need to set isolated_build because: 'pyproject.toml file found.
# To use a PEP 517 build-backend you are required to configure tox to
# use an isolated_build"
isolated_build = True
envlist = py
[testenv]
description = run whole test suite
commands = python -m unittest discover \
--start-directory cockpit/testsuite \
--verbose
"""