-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (66 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
71 lines (66 loc) · 2.03 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "docsingest"
version = "0.2.1"
description = "Defense-grade document ingestion with CUI detection, ITAR/EAR screening, PII/PHI protection, and FedRAMP-ready audit trails"
readme = "README.md"
authors = [{name = "Marc Shade", email = "marc@2acrestudios.com"}]
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"requests>=2.25.0",
"chardet>=3.0.0",
"tiktoken>=0.3.0,<1.0.0",
"markdown>=3.3.0",
"python-docx>=0.8.11",
"openpyxl>=3.0.0",
"PyPDF2>=2.0.0"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Legal Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Security",
"Topic :: Utilities"
]
keywords = [
"document-processing", "ai", "compliance", "llm", "text-extraction",
"cui", "nist-800-171", "nist-800-53", "itar", "ear", "export-control",
"pii-detection", "phi-detection", "fedramp", "defense", "cybersecurity",
"document-sanitization", "audit-trail"
]
[project.optional-dependencies]
processing = [
"PyPDF2",
"chardet",
"requests"
]
compliance = [
"spacy>=3.6,<4.0",
"nltk>=3.5",
"Pillow>=9.0",
]
dev = [
"pytest",
"twine",
"build"
]
[project.urls]
Homepage = "https://github.com/marc-shade/docsingest"
Repository = "https://github.com/marc-shade/docsingest"
"Bug Reports" = "https://github.com/marc-shade/docsingest/issues"
Source = "https://github.com/marc-shade/docsingest"
[project.scripts]
docsingest = "docsingest.cli:main"