forked from ShngJZ/WildCamera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (47 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
57 lines (47 loc) · 1.37 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
#
# Copyright(c) 2025 Intel. Licensed under the MIT License <http://opensource.org/licenses/MIT>.
#
[build-system]
requires = ["setuptools>=42", "wheel", "Cython", "numpy",]
build-backend = "setuptools.build_meta"
[project]
name = "WildCamera"
description = "Image calibration."
dependencies = [
"black >= 24.4",
]
maintainers = [
]
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["machine learning", "video generation"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
# License
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.10"
dynamic = ["version"]
[project.urls]
Homepage = "https://www.intel.com"
Documentation = "https://readthedocs.org"
Repository = "https://github.com/isl-org/WildCamera"
[tool.setuptools]
py-modules = ["WildCamera"]
[tool.black]
include = 'WildCamera/.*py$|tests/.*\.py$|scripts/.*\.py$'
force-exclude = '''
submodules/.*
'''