-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (43 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (43 loc) · 1.07 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
from setuptools import setup, find_packages
setup(
name="detr",
version="1.0.0",
url="https://github.com/anenbergb/DETR-object-detection",
author="Bryan Anenberg",
author_email="anenbergb@gmail.com",
description="An implementation of DETR: End-to-End object detection with transformers",
python_requires=">=3.10",
packages=find_packages(),
install_requires=[
"numpy",
"tensorboard",
"pandas",
"pandas-stubs",
"opencv-python",
"loguru",
"matplotlib",
"ffmpeg-python",
"tqdm",
"types-tqdm",
"pillow",
"types-Pillow",
"tabulate",
"fiftyone",
"pycocotools",
"torchmetrics[detection]",
],
extras_require={
"torch": [
"torch",
"torchvision",
],
"notebook": [
"jupyter",
"itkwidgets",
"jupyter_contrib_nbextensions",
"plotly",
"seaborn",
],
"dev": ["black", "mypy", "flake8", "isort", "ipdb"],
},
)