-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (107 loc) · 2.76 KB
/
pyproject.toml
File metadata and controls
119 lines (107 loc) · 2.76 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "lightning-pose"
version = "2.0.9"
description = "Semi-supervised pose estimation using pytorch lightning"
license = "MIT"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Dan Biderman", email = "danbider@gmail.com" },
{ name = "Matt Whiteaway" },
]
maintainers = [
{ name = "Karan Sikka", email = "karanssikka@gmail.com" },
]
keywords = ["machine learning", "deep learning", "computer_vision"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"aniposelib",
"h5py",
"hydra-core",
"imaug",
"kornia",
"lightning (~=2.5.0)",
"pytorch-lightning (~=2.5.0)",
"matplotlib",
"moviepy (>=2.0.0)",
"numpy (>=2.0.0)",
"opencv-python-headless",
"pandas (>=2.0.0)",
"pillow",
"safetensors",
"scikit-learn (>=1.5.0)",
"tensorboard (<3.0.0)",
"torchtyping",
"torch (<3.0.0)",
"torchvision (<0.25.0)",
"transformers==4.52.4",
"typeguard",
"nvidia-dali-cuda110",
]
[project.urls]
repository = "https://github.com/paninski-lab/lightning-pose"
documentation = "https://lightning-pose.readthedocs.io/"
# project.dependencies are used for metadata when building the project, tool.poetry.dependencies is only used to enrich
# project.dependencies for locking
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
[tool.poetry.scripts]
litpose = "lightning_pose.cli.main:main"
[project.optional-dependencies]
dev = [
"autopep8",
"flake8",
"isort",
"pytest",
"pytest-html",
"pytest-mock",
"Sphinx",
"sphinx-argparse",
"sphinx-automodapi",
"sphinx-copybutton",
"sphinx-design",
"sphinx-rtd-dark-mode",
"sphinx_rtd_theme",
"tbparse (<1.0.0)",
]
extra-models = ["lightning-bolts"]
[tool.flake8]
max-line-length = 99
ignore = ["F821", "W503"]
extend-ignore = ["E203"]
exclude = [
".git",
"__pycache__",
"__init__.py",
"build",
"dist",
"docs/",
"scripts/",
]
[tool.isort]
line_length = 99
profile = "black"
src_paths = ["lightning_pose", "tests"]
[tool.black]
line-length = 99
[tool.autopep8]
line-length = 99
ignore = ["E203", "W503", "F821"]
[tool.pytest.ini_options]
testpaths = "tests"
generate_report_on_test = "True"
markers = ["multigpu"]