@@ -3,44 +3,47 @@ requires = ["setuptools", "wheel"]
3
3
build-backend = " setuptools.build_meta"
4
4
5
5
[tool .setuptools .packages .find ]
6
- where = [" ." ] # list of folders that contain the packages (["."] by default)
7
- include = [" ns_vfs" ] # package names should match these glob patterns (["*"] by default)
8
- exclude = [" store" , " artifacts, docker, experiments" ] # exclude packages matching these glob patterns (empty by default)
9
- namespaces = false # to disable scanning PEP 420 namespaces (true by default)
6
+ where = [" ." ] # list of folders that contain the packages (["."] by default)
7
+ include = [
8
+ " ns_vfs" ,
9
+ ] # package names should match these glob patterns (["*"] by default)
10
+ exclude = [
11
+ " store" ,
12
+ " artifacts, docker, experiments" ,
13
+ ] # exclude packages matching these glob patterns (empty by default)
14
+ namespaces = false # to disable scanning PEP 420 namespaces (true by default)
10
15
11
16
[tool .my-tool ]
12
17
submodule_path = " ns_vfs/model/diffusion/stable_diffusion"
13
18
14
19
[project ]
15
20
name = " ns-vfs"
16
21
version = " 0.0.1"
17
- authors = [
18
- {
name =
" Minkyu Choi" ,
email =
" [email protected] " },
19
- ]
22
+ authors = [{
name =
" Minkyu Choi" ,
email =
" [email protected] " }]
20
23
description = " The pipeline to convert video to automaton"
21
24
readme = " README.md"
22
25
requires-python = " >=3.10"
23
26
classifiers = [
24
- " Programming Language :: Python :: 3" ,
25
- " License :: OSI Approved :: MIT License" ,
26
- " Operating System :: OS Independent" ,
27
+ " Programming Language :: Python :: 3" ,
28
+ " License :: OSI Approved :: MIT License" ,
29
+ " Operating System :: OS Independent" ,
27
30
]
28
31
dependencies = [
29
- " omegaconf" ,
30
- " hydra-core>=1.2.0 " ,
31
- " numpy==1.21.5 " ,
32
- " pandas==2.0.3" ,
33
- " sympy" ,
34
- " regex" ,
35
- " supervision==0.6.0" ,
36
- " roboflow" ,
37
- " einops" ,
38
- " pytorch-lightning==1.4.2" ,
39
- " torchmetrics==0.5" ,
40
- " ultralytics" ,
41
- " clip@git+https://github.com/openai/CLIP.git" ,
42
- " cvias@git+https://github.com/Coargus/Computer-Vision-Inference-and-Server.git@nsvqa-dev" ,
43
- " vflow@git+https://github.com/Coargus/[email protected] " ,
32
+ " omegaconf==2.3.0 " ,
33
+ " hydra-core>=1.3.2 " ,
34
+ " numpy==1.26.4 " ,
35
+ " pandas==2.0.3" ,
36
+ " sympy==1.13.1 " ,
37
+ " regex==2024.11.6 " ,
38
+ " supervision==0.6.0" ,
39
+ " roboflow==1.1.61 " ,
40
+ " einops==0.8.0 " ,
41
+ " pytorch-lightning==1.4.2" ,
42
+ " torchmetrics==0.5.0 " ,
43
+ " ultralytics==8.2.40 " ,
44
+ " clip@git+https://github.com/openai/CLIP.git" ,
45
+ " cvias@git+https://github.com/Coargus/Computer-Vision-Inference-and-Server.git@nsvqa-dev" ,
46
+ " vflow@git+https://github.com/Coargus/[email protected] " ,
44
47
]
45
48
[tool .black ]
46
49
line-length = 80
@@ -52,4 +55,3 @@ line-length = 80
52
55
[project .optional-dependencies ]
53
56
dev = [" black" , " ruff" , " mypy" ]
54
57
test = [" pytest" , " pytest-cov" , " pytest-mock" ]
55
-
0 commit comments