-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (65 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
70 lines (65 loc) · 1.56 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
[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.2.1",
"fuzzywuzzy>=0.18.0",
"scrapy>=2.12.0",
"pytest>=8.3.0",
# Security note: pip 25.2 has known tarfile vulnerability (GHSA-4xh5-x5gv-qwph)
# scrapy 2.13.3 has old DoS vulnerability (PYSEC-2017-83) - consider if needed
"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.5.0",
"matplotlib>=3.9.0",
"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",
]
[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" = ["*"]