-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.42 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "numfu-lang"
version = "0.2.0"
description = "The NumFu programming language"
authors = [{ name = "Raphael", email = "hello@alpharee.de" }]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"click==8.2.1",
"lark==1.2.2",
"prompt_toolkit==3.0.51",
"rich==14.0.0",
"mpmath==1.3.0",
]
keywords = ["programming language", "math", "functional", "interpreter", "numfu", "educational", "education", "programming", "language"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Interpreters",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://rphle.github.io/numfu"
Documentation = "https://rphle.github.io/numfu/docs"
Source = "https://github.com/rphle/numfu"
Issues = "https://github.com/rphle/numfu/issues"
[project.scripts]
numfu = "numfu:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
numfu = ["grammar/numfu.lark", "stdlib/*.nfut"]