-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
74 lines (62 loc) · 2.05 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
[tool.poetry]
name = "pycompile"
version = "0.2.3"
description = "A CLI tool for compiling python"
authors = ["iplitharas <johnplitharas@gmail.com>"]
homepage = "https://github.com/iplitharas/pycompile"
repository = "https://github.com/iplitharas/pycompile"
documentation = "https://iplitharas.github.io/pycompile/"
license = "MIT"
readme = "README.md"
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = ">=3.10" # MIT
cython = "^3.0.0" # Apache
nuitka = ">=1.7.5,<3.0.0" # Apache 2.0
click = "^8.1.3" # BSD-3-Clause
tqdm = "^4.64.1" # MIT
pytest-benchmark = "^4.0.0" # BSD-2-Clause
memory-profiler = "^0.61.0" # BSD
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.1,<9.0.0" # MIT
black = "^23.1.0" # MIT
pylint = ">=2.16.2,<4.0.0" # GPL v2
isort = "^5.12.0" # MIT
pytest-cov = ">=4,<6" # MIT
pre-commit = "^3.1.0" # MIT
ipython = "^8.10.0" # BSD-3-Clause
mypy = "^1.4.1" # MIT
types-tqdm = "^4.65.0.1" # Apache 2.0
sphinx = "^7.0.1" # BSD
furo = "^2023.5.20" # MIT
myst-parser = "^2.0.0" # MIT
nbsphinx = "^0.9.3" # MIT
sphinx-copybutton = "^0.5.2" # MIT
recommonmark = "^0.7.1" # MIT
commitizen = "^3.12.0" # MIT
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "semver"
version_provider = "poetry"
update_changelog_on_bump = true
major_version_zero = true
[build-system]
requires = [ "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
pycompile = "src.cli.entrypoint:main"
[tool.black]
line-length = 80
target-version = ["py310"]
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 80
skip = [".gitignore", ".dockerignore" ,".env"]
[tool.mypy]
python_version = "3.10"
strict_optional = true
strict = true