Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pyproject.toml 7.6 KB

You have to be logged in to leave a comment. Sign In
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
  1. # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
  2. # Overview:
  3. # This pyproject.toml file manages the build, packaging, and distribution of the Ultralytics library.
  4. # It defines essential project metadata, dependencies, and settings used to develop and deploy the library.
  5. # Key Sections:
  6. # - [build-system]: Specifies the build requirements and backend (e.g., setuptools, wheel).
  7. # - [project]: Includes details like name, version, description, authors, dependencies and more.
  8. # - [project.optional-dependencies]: Provides additional, optional packages for extended features.
  9. # - [tool.*]: Configures settings for various tools (pytest, yapf, etc.) used in the project.
  10. # Installation:
  11. # The Ultralytics library can be installed using the command: 'pip install ultralytics'
  12. # For development purposes, you can install the package in editable mode with: 'pip install -e .'
  13. # This approach allows for real-time code modifications without the need for re-installation.
  14. # Documentation:
  15. # For comprehensive documentation and usage instructions, visit: https://docs.ultralytics.com
  16. [build-system]
  17. requires = ["setuptools>=70.0.0", "wheel"]
  18. build-backend = "setuptools.build_meta"
  19. # Project settings -----------------------------------------------------------------------------------------------------
  20. [project]
  21. name = "ultralytics"
  22. dynamic = ["version"]
  23. description = "Ultralytics YOLO 🚀 for SOTA object detection, multi-object tracking, instance segmentation, pose estimation and image classification."
  24. readme = "README.md"
  25. requires-python = ">=3.8"
  26. license = { "text" = "AGPL-3.0" }
  27. keywords = ["machine-learning", "deep-learning", "computer-vision", "ML", "DL", "AI", "YOLO", "YOLOv3", "YOLOv5", "YOLOv8", "YOLOv9", "YOLOv10", "YOLO11", "HUB", "Ultralytics"]
  28. authors = [
  29. { name = "Glenn Jocher", email = "glenn.jocher@ultralytics.com" },
  30. { name = "Jing Qiu", email = "jing.qiu@ultralytics.com" },
  31. ]
  32. maintainers = [
  33. { name = "Ultralytics", email = "hello@ultralytics.com" },
  34. ]
  35. classifiers = [
  36. "Development Status :: 4 - Beta",
  37. "Intended Audience :: Developers",
  38. "Intended Audience :: Education",
  39. "Intended Audience :: Science/Research",
  40. "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
  41. "Programming Language :: Python :: 3",
  42. "Programming Language :: Python :: 3.8",
  43. "Programming Language :: Python :: 3.9",
  44. "Programming Language :: Python :: 3.10",
  45. "Programming Language :: Python :: 3.11",
  46. "Programming Language :: Python :: 3.12",
  47. "Topic :: Software Development",
  48. "Topic :: Scientific/Engineering",
  49. "Topic :: Scientific/Engineering :: Artificial Intelligence",
  50. "Topic :: Scientific/Engineering :: Image Recognition",
  51. "Operating System :: POSIX :: Linux",
  52. "Operating System :: MacOS",
  53. "Operating System :: Microsoft :: Windows",
  54. ]
  55. # Required dependencies ------------------------------------------------------------------------------------------------
  56. dependencies = [
  57. "numpy>=1.23.0",
  58. "matplotlib>=3.3.0",
  59. "opencv-python>=4.6.0",
  60. "pillow>=7.1.2",
  61. "pyyaml>=5.3.1",
  62. "requests>=2.23.0",
  63. "scipy>=1.4.1",
  64. "torch>=1.8.0",
  65. "torch>=1.8.0,!=2.4.0; sys_platform == 'win32'", # Windows CPU errors w/ 2.4.0 https://github.com/ultralytics/ultralytics/issues/15049
  66. "torchvision>=0.9.0",
  67. "tqdm>=4.64.0", # progress bars
  68. "psutil", # system utilization
  69. "py-cpuinfo", # display CPU info
  70. "pandas>=1.1.4",
  71. "seaborn>=0.11.0", # plotting
  72. "ultralytics-thop>=2.0.0", # FLOPs computation https://github.com/ultralytics/thop
  73. ]
  74. # Optional dependencies ------------------------------------------------------------------------------------------------
  75. [project.optional-dependencies]
  76. dev = [
  77. "ipython",
  78. "pytest",
  79. "pytest-cov",
  80. "coverage[toml]",
  81. "mkdocs>=1.6.0",
  82. "mkdocs-material>=9.5.9",
  83. "mkdocstrings[python]",
  84. "mkdocs-ultralytics-plugin>=0.1.17", # for meta descriptions and images, dates and authors
  85. "mkdocs-macros-plugin>=1.0.5" # duplicating content (i.e. export tables) in multiple places
  86. ]
  87. export = [
  88. "onnx>=1.12.0,<1.18.0", # ONNX export
  89. "coremltools>=8.0; platform_system != 'Windows' and python_version <= '3.13'", # CoreML supported on macOS and Linux
  90. "scikit-learn>=1.3.2; platform_system != 'Windows' and python_version <= '3.13'", # CoreML k-means quantization
  91. "openvino>=2024.0.0", # OpenVINO export
  92. "tensorflow>=2.0.0", # TF bug https://github.com/ultralytics/ultralytics/issues/5161
  93. "tensorflowjs>=2.0.0", # TF.js export, automatically installs tensorflow
  94. "tensorstore>=0.1.63; platform_machine == 'aarch64' and python_version >= '3.9'", # for TF Raspberry Pi exports
  95. "h5py!=3.11.0; platform_machine == 'aarch64'", # fix h5py build issues due to missing aarch64 wheels in 3.11 release
  96. ]
  97. solutions = [
  98. "shapely>=2.0.0", # shapely for point and polygon data matching
  99. "streamlit>=1.29.0", # for live inference on web browser, i.e `yolo streamlit-predict`
  100. "flask", # for similarity search solution
  101. ]
  102. logging = [
  103. "wandb", # https://docs.ultralytics.com/integrations/weights-biases/
  104. "tensorboard", # https://docs.ultralytics.com/integrations/tensorboard/
  105. "mlflow", # https://docs.ultralytics.com/integrations/mlflow/
  106. ]
  107. extra = [
  108. "hub-sdk>=0.0.12", # Ultralytics HUB
  109. "ipython", # interactive notebook
  110. "albumentations>=1.4.6", # training augmentations
  111. "pycocotools>=2.0.7", # COCO mAP
  112. ]
  113. [project.urls]
  114. "Homepage" = "https://ultralytics.com"
  115. "Source" = "https://github.com/ultralytics/ultralytics"
  116. "Documentation" = "https://docs.ultralytics.com"
  117. "Bug Reports" = "https://github.com/ultralytics/ultralytics/issues"
  118. "Changelog" = "https://github.com/ultralytics/ultralytics/releases"
  119. [project.scripts]
  120. yolo = "ultralytics.cfg:entrypoint"
  121. ultralytics = "ultralytics.cfg:entrypoint"
  122. # Tools settings -------------------------------------------------------------------------------------------------------
  123. [tool.setuptools] # configuration specific to the `setuptools` build backend.
  124. packages = { find = { where = ["."], include = ["ultralytics", "ultralytics.*"] } }
  125. # Tests included below for checking Conda builds in https://github.com/conda-forge/ultralytics-feedstock
  126. package-data = { "ultralytics" = ["**/*.yaml", "**/*.sh", "../tests/*.py"], "ultralytics.assets" = ["*.jpg"], "ultralytics.solutions.templates" = ["*.html"]}
  127. [tool.setuptools.dynamic]
  128. version = { attr = "ultralytics.__version__" }
  129. [tool.pytest.ini_options]
  130. addopts = "--doctest-modules --durations=30 --color=yes"
  131. markers = [
  132. "slow: skip slow tests unless --slow is set",
  133. ]
  134. norecursedirs = [".git", "dist", "build"]
  135. [tool.coverage.run]
  136. source = ["ultralytics/"]
  137. data_file = "tests/.coverage"
  138. omit = ["ultralytics/utils/callbacks/*"]
  139. [tool.isort]
  140. line_length = 120
  141. multi_line_output = 0
  142. [tool.yapf]
  143. based_on_style = "pep8"
  144. spaces_before_comment = 2
  145. column_limit = 120
  146. coalesce_brackets = true
  147. spaces_around_power_operator = true
  148. space_between_ending_comma_and_closing_bracket = true
  149. split_before_closing_bracket = false
  150. split_before_first_argument = false
  151. [tool.ruff]
  152. line-length = 120
  153. [tool.ruff.format]
  154. docstring-code-format = true
  155. [tool.ruff.lint.pydocstyle]
  156. convention = "google"
  157. [tool.docformatter]
  158. wrap-summaries = 120
  159. wrap-descriptions = 120
  160. pre-summary-newline = true
  161. close-quotes-on-newline = true
  162. in-place = true
  163. [tool.codespell]
  164. ignore-words-list = "crate,nd,ned,strack,dota,ane,segway,fo,gool,winn,commend,bloc,nam,afterall"
  165. skip = '*.pt,*.pth,*.torchscript,*.onnx,*.tflite,*.pb,*.bin,*.param,*.mlmodel,*.engine,*.npy,*.data*,*.csv,*pnnx*,*venv*,*translat*,__pycache__*,*.ico,*.jpg,*.png,*.mp4,*.mov,/runs,/.git,./docs/??/*.md,./docs/mkdocs_??.yml'
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...