-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.49 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "frscript"
dynamic = ["version"]
description = "Simple bytecode compiled C-style scripting language"
readme = "README.md"
requires-python = ">=3.13"
license = {text = "PolyForm Noncommercial License 1.0.0"}
authors = [
{name = "Omena0"}
]
keywords = ["compiler", "interpreter", "scripting", "bytecode", "language"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Interpreters",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"setuptools",
"zstd",
]
[project.urls]
Source = "https://github.com/Omena0/fr"
"Bug Reports" = "https://github.com/Omena0/fr/issues"
[project.scripts]
fr = "src.cli:main"
[tool.setuptools]
packages = ["src", "runtime"]
include-package-data = true
[tool.setuptools.package-data]
src = ["*.c"]
runtime = ["*.c", "*.h", "Makefile", "vm"]
[tool.setuptools_scm]
write_to = "src/_version.py"
fallback_version = "0.0.0"
local_scheme = "no-local-version"
version_scheme = "python-simplified-semver"
tag_regex = "^v?(?P<version>[0-9]+\\.[0-9]+\\.[0-9]+)$"
[tool.pyright]
autoSearchPaths = false
exclude = ["cases", "extension", "**/.*", "**/__pycache__", "**/node_modules"]
ignore = ["cases", "extension", "**/.*", "**/__pycache__", "**/node_modules"]