-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1.22 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
[project]
name = "openmicroview"
version = "1.0.1"
description = "GUI for the open source, Raspberry Pi based OpenMicroView Microscope"
license = {file = "LICENSE"}
readme = "README.md"
authors = [
{ name="V. Salvadori" }
]
maintainers = [
{ name = "Space Biology Group" }
]
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering"
]
dependencies = [
"imutils",
"ttkthemes",
"Pillow",
"picamera",
"rpi_ws281x",
"adafruit-circuitpython-neopixel",
"adafruit-blinka"
]
keywords = ['raspberrypi', 'microscope']
[project.urls]
Homepage = "https://github.com/Space-Biology-Group/OpenMicroView"
Issues = "https://github.com/Space-Biology-Group/OpenMicroView/issues"
[tool.pyright]
reportMissingModuleSource = "information"
reportMissingImports = "information"
[tool.pylint]
disable = [
"missing-function-docstring",
"missing-module-docstring",
"import-error",
"unspecified-encoding",
"superfluous-parens"
]
suggestion-mode="yes"
py-version = "3.7.0"
max-line-length=110