최동원

gitignore

Showing 1 changed file with 111 additions and 0 deletions
...@@ -3,3 +3,114 @@ code/web/node_modules/** ...@@ -3,3 +3,114 @@ code/web/node_modules/**
3 /code/venv 3 /code/venv
4 /code/deep_sort_yolov4/model_data/yolov4.weights 4 /code/deep_sort_yolov4/model_data/yolov4.weights
5 /code/deep_sort_yolov4/model_data/yolo4_weight.h5 5 /code/deep_sort_yolov4/model_data/yolo4_weight.h5
6 +
7 +.DS_Store
8 +
9 +### Python ###
10 +# Byte-compiled / optimized / DLL files
11 +__pycache__/
12 +*.py[cod]
13 +*$py.class
14 +
15 +# C extensions
16 +*.so
17 +
18 +# Distribution / packaging
19 +.Python
20 +build/
21 +develop-eggs/
22 +dist/
23 +downloads/
24 +eggs/
25 +.eggs/
26 +lib/
27 +lib64/
28 +parts/
29 +sdist/
30 +var/
31 +wheels/
32 +pip-wheel-metadata/
33 +share/python-wheels/
34 +*.egg-info/
35 +.installed.cfg
36 +*.egg
37 +MANIFEST
38 +
39 +# PyInstaller
40 +# Usually these files are written by a python script from a template
41 +# before PyInstaller builds the exe, so as to inject date/other infos into it.
42 +*.manifest
43 +*.spec
44 +
45 +# Installer logs
46 +pip-log.txt
47 +pip-delete-this-directory.txt
48 +
49 +# Unit test / coverage reports
50 +htmlcov/
51 +.tox/
52 +.nox/
53 +.coverage
54 +.coverage.*
55 +.cache
56 +nosetests.xml
57 +coverage.xml
58 +*.cover
59 +.hypothesis/
60 +.pytest_cache/
61 +
62 +# Translations
63 +*.mo
64 +*.pot
65 +
66 +# Scrapy stuff:
67 +.scrapy
68 +
69 +# Sphinx documentation
70 +docs/_build/
71 +
72 +# PyBuilder
73 +target/
74 +
75 +# pyenv
76 +.python-version
77 +env/
78 +venv/
79 +
80 +# pipenv
81 +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
82 +# However, in case of collaboration, if having platform-specific dependencies or dependencies
83 +# having no cross-platform support, pipenv may install dependencies that don't work, or not
84 +# install all needed dependencies.
85 +#Pipfile.lock
86 +
87 +# celery beat schedule file
88 +celerybeat-schedule
89 +
90 +# SageMath parsed files
91 +*.sage.py
92 +
93 +# Spyder project settings
94 +.spyderproject
95 +.spyproject
96 +
97 +# Rope project settings
98 +.ropeproject
99 +
100 +# Mr Developer
101 +.mr.developer.cfg
102 +.project
103 +.pydevproject
104 +
105 +# mkdocs documentation
106 +/site
107 +
108 +# mypy
109 +.mypy_cache/
110 +.dmypy.json
111 +dmypy.json
112 +
113 +# Pyre type checker
114 +.pyre/
115 +
116 +# End of https://www.gitignore.io/api/python
......