forked from Ati-74/Trackrefiner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·56 lines (50 loc) · 2.39 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='TrackRefiner',
version='1.2.3',
description='A precision tracking tool for bacillus cell tracking',
install_requires=['numpy==1.26.4', 'scipy', 'pandas >= 2.2.2', 'scikit-learn', 'matplotlib', 'opencv-python',
'scikit-image', 'psutil', 'seaborn', 'PyQt5'],
setup_requires=['numpy==1.26.4', 'scipy', 'pandas >= 2.2.2', 'scikit-learn', 'matplotlib', 'opencv-python',
'scikit-image', 'psutil', 'seaborn', 'PyQt5'],
packages=find_packages(include=["Trackrefiner", "Trackrefiner.*"]),
python_requires='>=3.9',
url='https://github.com/ingallslab/Trackrefiner',
author='Atiyeh Ahmadi',
author_email='a94ahmad@uwaterloo.ca',
license='BSD-3-Clause',
entry_points={
'console_scripts': [
'trackrefiner-cli=Trackrefiner.cli:main',
'trackrefiner-gui=Trackrefiner.gui:main',
'trackrefiner-track-editor=Trackrefiner.bacteriaTrackEditor:main',
'trackrefiner-jitter-remover=Trackrefiner.utils.jitterRemover: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",
},
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"
],
)