forked from Ati-74/Trackrefiner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·68 lines (57 loc) · 1.88 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TrackRefiner"
version = "1.2.3"
description = "A precision tracking tool for bacillus cell tracking"
requires-python = ">=3.9"
license = {text = "BSD 3-Clause"}
authors = [
{name = "Atiyeh Ahmadi", email = "a94ahmad@uwaterloo.ca"}
]
classifiers = [
# Intended Audience
"Intended Audience :: Science/Research",
# Topics
"Topic :: Scientific/Engineering",
# Environment
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
# Programming Language and Python Versions
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
dependencies = [
"numpy==1.26.4",
"scipy",
"pandas>=2.2.2",
"scikit-learn",
"matplotlib",
"opencv-python",
"scikit-image",
"psutil",
"seaborn",
"PyQt5"
]
[project.scripts]
trackrefiner-cli = "Trackrefiner.cli:main"
trackrefiner-gui = "Trackrefiner.gui:main"
trackrefiner-jitter-remover = "Trackrefiner.utils.jitterRemover:main"
trackrefiner-track-editor = "Trackrefiner.bacteriaTrackEditor:main"
[project.urls]
homepage = "https://github.com/ingallslab/Trackrefiner"
repository = "https://github.com/ingallslab/Trackrefiner"
tutorial = "https://github.com/ingallslab/Trackrefiner/wiki"
documentation = "https://github.com/ingallslab/Trackrefiner/tree/main/docs/html"
faq = "https://github.com/ingallslab/Trackrefiner/issues"
issues = "https://github.com/ingallslab/Trackrefiner/issues"
[tool.setuptools]
license-files = ["LICENSE"]