-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (64 loc) · 1.84 KB
/
Copy pathsetup.py
File metadata and controls
65 lines (64 loc) · 1.84 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
from setuptools import setup, find_packages
setup(
name="entomokit",
version="0.2.0",
description="A Python toolkit for building insect image datasets with segmentation, frame extraction, cleaning, dataset splitting, and image synthesis capabilities",
author="Feng ZHANG",
author_email="xtmtd.zf@gmail.com",
url="https://github.com/xtmtd/entomokit",
packages=find_packages(),
install_requires=[
"numpy>=1.24.0",
"Pillow>=10.0.0",
"tqdm>=4.65.0",
],
extras_require={
"segmentation": [
"torch>=2.0.0,<2.4.0",
"torchvision>=0.15.0,<0.19.0",
"opencv-python>=4.8.0",
"scikit-image>=0.21.0",
],
"cleaning": [
"imagehash",
],
"video": [
"opencv-python>=4.8.0",
],
"data": [
"pandas",
],
"dev": [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
],
"augment": [
"albumentations>=1.4.0",
],
"classify": [
"autogluon.multimodal>=1.4.0",
"timm>=0.9.0",
"umap-learn",
"grad-cam",
"onnxruntime",
"scikit-learn",
],
},
python_requires=">=3.8",
entry_points={
"console_scripts": [
"entomokit=entomokit.main:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Image Processing",
],
)