-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
56 lines (49 loc) · 1.67 KB
/
setup.py
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
from setuptools import setup
# Read README for the long description
with open("README.md", "r") as f:
long_description = f.read()
def __version__():
return "2.4.0"
project_urls = {
"Homepage": "https://datafog.ai",
"Documentation": "https://docs.datafog.ai",
"Discord": "https://discord.gg/bzDth394R4",
"Twitter": "https://twitter.com/datafoginc",
"GitHub": "https://github.com/datafog/datafog-python",
}
setup(
name="datafog",
version=__version__(),
author="DataFog",
author_email="[email protected]",
description="Scan, redact, and manage PII in your documents before they get uploaded to a Retrieval Augmented Generation (RAG) system.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"pandas==2.2.1",
"presidio_analyzer==2.2.353",
"pytest==8.0.2",
"Requests==2.31.0",
"spacy==3.4.4",
"en_spacy_pii_fast",
],
python_requires=">=3.10",
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: tox",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
],
keywords="pii, redaction, nlp, rag, retrieval augmented generation",
maintainer="DataFog",
maintainer_email="[email protected]",
url="https://datafog.ai",
project_urls=project_urls,
license="MIT",
)