-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (77 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
82 lines (77 loc) · 1.94 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
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "python-examples"
version = "0.1.0"
description = "examples of common python libs"
authors = [
{name = "James Campbell"},
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4>=4.12.3",
"pysocks>=1.7.1",
"rethinkdb>=2.4.10",
"quandl>=3.7.0",
"nltk>=3.9.1",
"exifread>=3.0.0",
"blockchain>=1.4.4",
"websockify>=0.11.0",
"shodan>=1.31.0",
"urllib3>=2.6.0",
"fuzzywuzzy>=0.18.0",
"scrapy>=2.13.4",
"pytest>=8.3.0",
# Security notes:
# - pip 25.2 vulnerability (GHSA-4xh5-x5gv-qwph): NOT AFFECTED - Python 3.12+ implements PEP 706
# - scrapy 2.13.3 (PYSEC-2017-83): Already at latest version, old DoS vulnerability from 2017
"termcolor>=2.4.0",
"pycld2>=0.41",
"polyglot>=16.7.4",
"tika>=2.6.0",
"pyzillow>=0.7.0",
"geotext>=0.4.0",
"tabulate>=0.9.0",
"tqdm>=4.66.4",
"redis>=5.0.4",
"psycopg2-binary>=2.9.9",
"pypdf2>=3.0.1",
"pinboard>=2.1.9",
"webdriver-manager>=4.0.2",
"scapy>=2.7.0",
"matplotlib>=3.9.0",
# Security: Pin vulnerable transitive dependencies to fixed versions
"filelock>=3.20.2",
"fonttools>=4.60.2",
"iptcinfo3>=2.1.4",
"requests>=2.31.0",
"lxml>=5.2.0",
"pillow>=10.3.0",
"numpy>=1.26.0",
"grpcio>=1.68.0",
"grpcio-tools>=1.68.0",
# LLM/AI Libraries
"openai>=1.59.0",
"anthropic>=0.42.0",
"langchain>=0.3.0",
"langchain-openai>=0.2.0",
"langchain-community>=0.3.0",
"instructor>=1.7.0",
"python-dotenv>=1.0.0",
]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.0",
"black>=24.0.0",
"flake8>=7.0.0",
"isort>=5.13.0",
"pip-audit>=2.9.0",
]
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["tests*", "*.tests*"]
[tool.setuptools.package-data]
"python_examples" = ["*"]