-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (79 loc) · 1.77 KB
/
pyproject.toml
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
[build-system]
requires = ['poetry-core>=1.3']
build-backend = 'poetry.core.masonry.api'
[tool.metadata]
display_name = 'pythonbasics'
package_name = 'solution-pythonbasics'
lib_name = 'solution_pythonbasics'
[tool.poetry]
name = 'solution-pythonbasics'
version = '0.1.0'
description = 'Lime CRM solution'
authors = ['Author <author@lime.tech>']
[[tool.poetry.source]]
name = 'lime'
url = 'https://pypi.lime.tech/simple/'
[tool.poetry.plugins.lime_plugins]
'solution-pythonbasics' = 'solution_pythonbasics'
[tool.poetry.dependencies]
python = '^3.11'
lime-crm = '2.882.0'
limepkg-ldc = '^1.4.3'
lime-core-cloud = '^1.41.2'
limepkg-status-flow = '^2.3.1'
addon-infotiles = '^4.9.2'
limepkg-erp-connector = '^9.2.0'
limepkg-option-visualizer = '^2.0.0'
lime-bi = '^3.34.0'
limepkg-filter-editor = '^1.0.5'
limepkg-kpi = '^1.2.3'
limepkg-gdpr = '^3.0.1'
limepkg-base-solution-helpers = '^5.1.2'
limepkg-document-templates = '^1.25.8'
limepkg-basic-deal = '^1.1.5'
addon-lime-automation = '^2.3.0'
limepkg-basic-lead = '^2.0.0'
lime-newsletter = '^3.0.0'
limepkg-smh-translations = '^1.1.0'
limepkg-newsletter-pro = '^1.0.2'
[tool.poetry.group.dev.dependencies]
autopep8 = '>=1'
pytest = '>=6.2.3'
flake8 = '^3.7'
black = '^22.1.0'
isort = '^5.0.0'
mock = '>3'
[tool.lime]
[tool.lime.project]
project_version = '1.231.1'
project_type = 'solution'
project_target = 'limecloud'
[tool.pytest.ini_options]
minversion = '6.0'
norecursedirs = [
'venv',
'.venv',
'build',
'dist',
'.plugins',
'frontend',
'.env',
'.git',
'.github',
'.lime',
'.vscode'
]
faulthandler_timeout = 300
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
| frontend
| poetry.lock
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3