-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.12 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (41 loc) · 1.12 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
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "tryptag"
version = "0.0.1"
authors = [
{ name = "Richard Wheeler", email="richardwheeler@outlook.com" },
]
description = "Python module for accessing and handling TrypTag genome-wide protein localisation project data."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy",
"scikit-image",
"Pillow",
"tifffile",
"tqdm",
"types-tqdm",
"filelock",
"matplotlib",
"requests",
"backports.strenum ; python_version < '3.11'",
"annotations @ git+https://github.com/ulido/annotations",
]
[project.urls]
"Homepage" = "https://github.com/zephyris/tryptag"
[tool.tox]
requires = ["tox>4.19"]
env_list = ["3.9", "3.10", "3.11", "3.12", "3.13", "type"]
[tool.tox.env_run_base]
description = "Run unit tests under {base_python}"
deps = [
"pytest>=8",
"pytest-sugar",
]
commands = [[ "pytest", "tests", { replace = "posargs", extend = true} ]]
[tool.tox.env.type]
description = "Run type check on code base"
deps = ["mypy>=1.11.2"]
commands = [["mypy", { replace = "posargs", default = ["src", "tests"], extend = true} ]]