-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
48 lines (42 loc) · 1.19 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
[tool.poetry]
name = "sml-catalogue"
version = "1.12.0"
description = "This repo contains the build environment and code to generate and upload the Statistical Methods Library (SML) Portal Web Application."
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
frozen-flask = "^1.0"
markdown = "^3.7"
flask-markdown = "^0.3"
contentful = "^2.2.0"
python-markdown-mathjax = "1.0.4"
python-markdown-math="^0.8"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
behave = "^1.2.6"
selenium = "^4.27.1"
flake8 = "^7.1.1"
pylint = "3.3.1"
bandit = "^1.8.0"
pandas = "2.2.3"
isort = "^5.12.0"
axe-selenium-python = "^2.1.6"
python-semantic-release = "<8.0.0"
werkzeug = "2.3.8"
notifications-python-client = "10.0.0"
contentful_management = "*"
[tool.bandit]
exclude_dirs = ["features", "./venv/", "/tempenv/"]
[tool.isort]
profile="black"
known_third_party=["boto3","moto","pandas","numpy"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = "pyproject.toml:version"
branch = "main"
upload_to_pypi = false
build_command = "python freeze.py && mkdir dist/ && zip -r dist/build.zip build/"
prerelease_tag = "rc"