-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 1.23 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "axomiscript"
version = "1.0.0"
description = "Assamese (and multi-language) programming language — write, compile, and run"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.8"
keywords = ["assamese", "programming-language", "transpiler", "compiler", "ide", "education", "northeast-india", "indigenous", "localization"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Software Development :: Compilers",
]
dependencies = [
"lark>=1.3.0",
]
[project.optional-dependencies]
web = ["flask>=3.0"]
dev = ["pytest>=7.0", "pytest-cov", "flask>=3.0", "ruff", "mypy"]
[project.scripts]
axomiscript = "axomiscript.cli:main"
[project.urls]
Homepage = "https://github.com/leonkaushikdeka/AxomiScript"
"Bug Tracker" = "https://github.com/leonkaushikdeka/AxomiScript/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["axomiscript*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py38"