-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (46 loc) · 1.51 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
[tool.poetry]
name = "reference-data-application"
version = "0.1.0"
description = ""
authors = ["saeed-coursera <[email protected]>"]
readme = "README.md"
packages = [{include = "reference_data_application"}]
classifiers = [
"Private :: Do not Upload", # Prevent uploading to PyPI
]
[tool.poetry.dependencies]
python = "^3.9"
courdata-core = "14.0.0"
[tool.poetry.group.dev.dependencies]
courdata-dev-tools = "14.0.0"
[[tool.poetry.source]]
name = "coursera-pypi-virtual"
url = "https://coursera.jfrog.io/artifactory/api/pypi/pypi-virtual/simple"
priority = "default"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
skip = [".github", ".venv", "build", "dist", "scripts"]
profile = "black"
[tool.black]
line-length = 100 # same as ruff.
target-version = ['py39']
extend-exclude = "/(\\.github|scripts)/"
[tool.ruff]
# Enable the pycodestyle (`E`) and Pyflakes (`F`) rules by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["E", "F"]
ignore = []
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# Exclude a variety of commonly ignored directories. same as black.
exclude = [".github", ".venv", "build", "dist", "scripts"]
per-file-ignores = {}
isort.combine-as-imports = true
line-length = 100 # Same as Black.
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
target-version = 'py39'