-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (53 loc) · 1.01 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
[project]
name = "Opogen"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "Equipo45", email = "ismiruiz@gmail.com"},
]
dependencies = [
"PyPDF2>=3.0.1",
"python-docx>=1.1.0",
"langchain>=0.1.14",
"langchain-openai>=0.1.1",
"markdown>=3.6",
"fpdf>=1.7.2",
"Flask==2.2.3",
"Flask-Cors==3.0.10",
"Werkzeug==2.2.2",
"reportlab>=4.1.0",
"streamlit>=1.33.0",
"fonttools>=4.51.0",
]
requires-python = "==3.10.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
# "UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
# "I",
]
ignore = [
# star imports
"F405", "F403",
# lambda expression assignment
"E731",
# Loop control variable not used within loop body
"B007",
"E501", # Ignore "Line too long" error
]
[tool.isort]
use_parentheses = true
skip_gitignore = true