-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
68 lines (66 loc) · 2.26 KB
/
setup.py
File metadata and controls
68 lines (66 loc) · 2.26 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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='docsingest',
version="0.2.0",
description='Defense-grade document ingestion with CUI detection, ITAR/EAR screening, PII/PHI protection, and FedRAMP-ready audit trails',
long_description=long_description,
long_description_content_type='text/markdown',
author='Marc Shade',
author_email='marc@2acrestudios.com',
url='https://github.com/marc-shade/docsingest',
packages=find_packages(),
entry_points={
'console_scripts': [
'docsingest=docsingest.cli:main',
],
},
install_requires=[
'requests>=2.25.1',
'chardet>=3.0.4',
'tiktoken>=0.3.3',
'markdown>=3.3.4',
'python-docx>=0.8.11',
'openpyxl>=3.0.7',
'PyPDF2>=1.26.0',
'nltk>=3.6.2',
'spacy==3.7.4',
'regex>=2024.1.0,<2025.0.0'
],
extras_require={
'compliance': [
'spacy>=3.6,<4.0',
'nltk>=3.5',
],
'dev': [
'pytest',
'twine',
'build',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Legal Industry',
'Intended Audience :: Information Technology',
'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 :: Text Processing :: General',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Security',
'Topic :: Utilities'
],
keywords='document-analysis ai compliance pii-detection cui nist-800-171 itar ear export-control defense fedramp audit-trail',
python_requires='>=3.8',
project_urls={
'Bug Reports': 'https://github.com/marc-shade/docsingest/issues',
'Source': 'https://github.com/marc-shade/docsingest',
},
)