forked from umyelab/LabGym
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
77 lines (70 loc) · 1.91 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
[build-system]
requires=['pdm-backend']
build-backend='pdm.backend'
[project]
name='LabGym'
description='Quantify user-defined behaviors.'
authors=[
{name='Yujia Hu',email='yujiahu415@gmail.com'},
{name='Rohan Satapathy',email='rohansat@umich.edu'},
{name='M. Victor Struman',email='strmark@umich.edu'},
{name='Kelly Goss',email='khgoss@umich.edu'},
{name='Isabelle Baker',email='ibaker@umich.edu'},
]
dependencies=[
'tensorflow>=2.10.1,<2.16.0;platform_system!="Windows"',
'tensorflow<2.11;platform_system=="Windows"',
'matplotlib',
'opencv-python',
'opencv-contrib-python',
'openpyxl',
'xlsxwriter',
'pandas',
'scikit-learn',
'scikit-image',
'seaborn',
'wxPython',
'scikit-posthocs',
'packaging',
'requests',
'numpy<=1.26.4',
'torch',
'torchvision',
'torchaudio'
]
requires-python='>=3.9,<3.11'
readme='README.md'
license={text='GPL-3.0'}
keywords=['behavior analysis','user defined behaviors','behavior quantification',]
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
]
dynamic=['version']
[project.urls]
Homepage='http://github.com/umyelab/LabGym'
Documentation='https://labgym.readthedocs.io/en/latest/'
Issues='http://github.com/umyelab/LabGym/issues'
[project.scripts]
LabGym='LabGym.__main__:main'
[tool.pdm]
distribution=true
[tool.pdm.version]
source='file'
path='LabGym/__init__.py'
[tool.pdm.dev-dependencies]
docs=[
'sphinx>=7.2.6',
'sphinx-autobuild>=2021.3.14',
'sphinx-copybutton>=0.5.2',
'myst-parser>=2.0.0',
'furo>=2023.9.10',
'sphinx-inline-tabs>=2023.4.21',
]
[tool.ruff.lint]
select=['E4','E7','E9','F','I001']
ignore-init-module-imports=true