-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (87 loc) · 2.16 KB
/
pyproject.toml
File metadata and controls
94 lines (87 loc) · 2.16 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
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pythonruns"
version = "0.1.0"
description = "Python tests and proofs of concept"
authors = [
{ name = "Wallace Espindola", email = "wallace.espindola@gmail.com" }
]
license = { text = "Apache-2.0" }
readme = "README.md"
requires-python = ">=3.11,<3.13"
dependencies = [
"python-jose[cryptography]>=3.5.0",
"argparse==1.4.0",
"asteval>=0.9.22",
"build==1.2.1",
"click==8.1.7",
"coverage==7.5.4",
"faker==26.0.0",
"jax>=0.4.0",
"jpype1==1.5.0",
"jupyterlab==4.2.3",
"lxml==5.2.2",
"matplotlib==3.9.0",
"mediapipe>=0.10.20,<0.11.0",
"mock==5.1.0",
"numpy>=1.26.0,<2.0.0",
"opencv-contrib-python==4.11.0.86",
"opencv-python==4.10.0.84",
"pandas==2.2.2",
"paramiko==3.4.0",
"pathlib==1.0.1",
"pdf2docx==0.5.8",
"pillow==10.3.0",
"pip-check==2.8.1",
"pre-commit==4.1.0",
"progress==1.6",
"protobuf==4.25.7",
"psutil==6.0.0",
"psycopg2-binary>=2.9.0",
"pytest==8.3.4",
"python-dotenv==1.0.1",
"qrcode==7.4.2",
"rembg==2.0.66",
"requests>=2.32.5,<3.0.0",
"secretstorage>=3.3.0",
"sentencepiece==0.2.0",
"setuptools==70.1.1",
"shortuuid==1.0.13",
"sounddevice==0.5.2",
"sqlite4==0.1.1",
"tqdm==4.66.4",
"twine==6.2.0",
"unittest-xml-reporting==3.2.0",
"urllib3==2.2.2",
"wheel==0.43.0",
"toml>=0.10.2,<0.11.0",
]
[project.urls]
Homepage = "https://github.com/wallaceespindola"
Repository = "https://github.com/wallaceespindola/PythonRuns"
[dependency-groups]
dev = [
"pytest>=8.3.4",
"pytest-cov>=5.0.0",
"pytest-html>=4.0.0",
"ruff>=0.4.0",
"black>=24.0.0",
"isort>=5.13.0",
"mypy>=1.0.0",
]
[tool.setuptools]
packages = ["pythonruns", "output", "resources", "scripts", "tests"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra --strict-markers"
testpaths = ["tests"]
log_cli = true
[tool.pre-commit]
hook-config = { python = "python3" }
[tool.setuptools.package-data]
output = ["*.csv", "*.docx", "*.png"]
resources = ["*.jpeg", "*.pdf", "*.png"]
scripts = ["*.sh", "*.py"]
tests = ["*.py"]