forked from umyelab/FluoSA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (55 loc) · 1.31 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
[build-system]
requires=['pdm-backend']
build-backend='pdm.backend'
[project]
name='FluoSA'
description='Fluorescence Signal Analyzer for calcium imaging on user-defined neural structures.'
authors=[{name='Yujia Hu',email='yujiahu415@gmail.com'}]
dependencies=[
'numpy<=1.26.4',
'scipy',
'readlif',
'tifffile',
'opencv-python',
'opencv-contrib-python',
'openpyxl',
'xlsxwriter',
'pandas',
'wxPython',
'packaging',
'requests',
'torch',
'torchvision',
'torchaudio'
]
requires-python='>=3.9,<3.11'
readme='README.md'
license={text='GPL-3.0'}
keywords=['Fluorescence signal analysis','Calcium imaging analysis']
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='https://github.com/umyelab/FluoSA'
[project.scripts]
FluoSA='FluoSA.__main__:main'
[tool.pdm]
distribution=true
[tool.pdm.version]
source='file'
path='FluoSA/__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',
]