-
Notifications
You must be signed in to change notification settings - Fork 478
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (72 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
80 lines (72 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = [
"setuptools",
"wheel",
"cython>=0.29",
]
build-backend = "setuptools.build_meta"
[project]
name = "imagededup"
version = "0.3.3-post2"
description = "Package for image deduplication"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Tanuj Jain", email = "tanuj.jain.10@gmail.com" },
{ name = "Christopher Lennan", email = "christopherlennan@gmail.com" },
{ name = "Zubin John", email = "zrjohn@yahoo.com" },
{ name = "Dat Tran", email = "datitran@gmail.com" }
]
requires-python = ">=3.9"
dependencies = [
"torch",
"torchvision",
"Pillow>=9.0",
"tqdm",
"scikit-learn",
"PyWavelets",
"matplotlib"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
tests = ["pytest", "pytest-cov", "pytest-mock", "codecov"]
docs = ["mkdocs", "mkdocs-material"]
[dependency-groups]
dev = [
"bump-my-version",
"twine"
]
[tool.bumpversion]
current_version = "0.3.3-post2"
commit = false
tag = true
parse = "^(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\-post(?P<post>\\d+))?$"
serialize = [
"{major}.{minor}.{patch}-post{post}",
"{major}.{minor}.{patch}"
]
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "0.3.3-post2"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "imagededup/__init__.py"
[project.urls]
Documentation = "https://idealo.github.io/imagededup/"
[tool.setuptools.packages.find]
exclude = ["tests*"]