-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (87 loc) · 2.16 KB
/
pyproject.toml
File metadata and controls
97 lines (87 loc) · 2.16 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
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
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = [
"setuptools>=42",
"wheel",
"markdown",
"numpy",
"scipy",
"pytest",
"qtpy",
"PySide6"
]
build-backend = "setuptools.build_meta"
[project]
name = "flika"
version = "0.3.3"
description = "An interactive image processing program for biologists written in Python."
readme = "README.md"
authors = [
{name = "Kyle Ellefsen, Brett Settle", email = "kyleellefsen@gmail.com"}
]
license = {text = "MIT"}
requires-python = ">=3.13"
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pandas>=0.14",
"matplotlib>=1.4",
"pyqtgraph>=0.9",
"PySide6",
"qtpy>=1.1",
"setuptools>=1.0",
"scikit-image>0.13.0",
"scikit-learn",
"ipython>=1.0",
"ipykernel",
"qtconsole",
"pyopengl",
"requests",
"nd2reader",
"markdown",
"jaxtyping",
"colorama",
]
[project.urls]
Documentation = "http://flika-org.github.io/contents.html"
Source = "https://github.com/flika-org/flika"
Tracker = "https://github.com/flika-org/flika/issues"
Homepage = "http://flika-org.github.io"
[project.scripts]
flika = "flika.flika:exec_"
flika_post_install = "flika.flika:post_install"
[project.optional-dependencies]
dev = [
"pytest>=6.0.0",
"pytest-cov>=2.12.0",
"twine>=3.4.0",
"build>=0.7.0",
"wheel>=0.36.0",
"sphinx>=4.0.0",
"sphinxcontrib-napoleon>=0.7",
"mypy",
"scipy-stubs",
]
[tool.setuptools]
packages = ["flika", "flika.images", "flika.utils", "flika.process", "flika.app"]
include-package-data = true
[tool.setuptools.package-data]
"flika" = ["*.ui", "*.ico", "*.png", "*.txt", "*.tif", "ui/*"]
[tool.pytest.ini_options]
testpaths = ["flika"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
[tool.ruff]
line-length = 88
[tool.mypy]
python_version = "3.13"
[[tool.mypy.overrides]]
module = ["pyqtgraph.*"]
ignore_missing_imports = true