File size: 1,845 Bytes
b1cc5ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[project]
name = "nemotron-table-structure-v1"
version = "1.0.0"
description = "Nemotron Table Structure v1 - A specialized object detection model for table structure extraction"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "NVIDIA Open Model License"}
authors = [
    {name = "NVIDIA Corporation", email = "tviel@nvidia.com"}
]
keywords = ["table-structure", "object-detection", "yolox", "nvidia", "nemotron", "pdf", "document-processing", "ocr"]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "Intended Audience :: Science/Research",
    "License :: Other/Proprietary License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Topic :: Scientific/Engineering :: Artificial Intelligence",
    "Topic :: Scientific/Engineering :: Image Recognition",
]
dependencies = [
    "torch>=2.0.0",
    "numpy>=1.21.0",
    "matplotlib>=3.3.0",
    "pandas>=1.3.0",
    "Pillow>=8.0.0",
]

[project.urls]
Homepage = "https://huggingface.co/nvidia/nemotron-table-structure-v1"
Repository = "https://huggingface.co/nvidia/nemotron-table-structure-v1"
Documentation = "https://huggingface.co/nvidia/nemotron-table-structure-v1"
"Bug Tracker" = "https://huggingface.co/nvidia/nemotron-table-structure-v1/discussions"

[tool.setuptools]
packages = ["nemotron_table_structure_v1", "nemotron_table_structure_v1.yolox", "nemotron_table_structure_v1.post_processing"]

[tool.setuptools.package-data]
"*" = ["*.pth", "config.json"]