-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.52 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
[project]
name = "iab-mapper"
version = "1.0.0"
description = "Local IAB Content Taxonomy 2.x -> 3.0 mapper with vectors, SCD, OpenRTB/VAST exporters."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "BSD-2-Clause" }
keywords = ["iab", "taxonomy", "content", "openrtb", "ctv", "classification"]
authors = [{ name = "Mixpeek" }]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"pandas>=2.1",
"rapidfuzz>=3.0",
"typer>=0.12",
"rich>=13.7",
"numpy>=1.26",
"orjson>=3.10",
"tqdm>=4.66",
"scikit-learn>=1.4",
"requests>=2.31"
]
[project.optional-dependencies]
emb = [
"sentence-transformers>=3.0"
]
[project.scripts]
mixpeek-iab-mapper = "iab_mapper.cli:app"
iab-mapper = "iab_mapper.cli:app"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = { find = { include = ["iab_mapper*"] } }
[tool.setuptools.package-data]
iab_mapper = [
"data/*.json"
]
[project.urls]
Homepage = "https://github.com/mixpeek/iab-mapper"
Repository = "https://github.com/mixpeek/iab-mapper"
Issues = "https://github.com/mixpeek/iab-mapper/issues"