-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (58 loc) · 1.59 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
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python_maithili"
version = "0.4.0"
description = "Run Python code written in Maithili using Devanagari script"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Bishwas Jha", email = "jha.bishwas@gmail.com" },
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: Hindi",
"Topic :: Software Development :: Interpreters",
]
[project.urls]
Repository = "https://github.com/alphacrack/python-maithili-dsl"
Issues = "https://github.com/alphacrack/python-maithili-dsl/issues"
[project.scripts]
python_maithili = "maithili_dsl.cli:main"
[tool.setuptools.packages.find]
include = ["maithili_dsl*"]
exclude = ["tests*"]
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
addopts = [
"-ra",
"--strict-markers",
"--strict-config",
]
markers = [
"smoke: end-to-end CLI smoke tests using example .dmai files",
"security: sandbox and import-whitelist enforcement tests",
]
[tool.coverage.run]
source = ["maithili_dsl"]
branch = true
omit = [
"maithili_dsl/__main__.py",
]
[tool.coverage.report]
fail_under = 85
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]
show_missing = true
skip_covered = false