-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.61 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "numerobis"
version = "0.1.0"
description = "The Numerobis programming language"
authors = [{ name = "Raphael", email = "hello@rphle.de" }]
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.12"
dependencies = [
"mmh3==5.2.0",
"rich==14.3.0",
"tqdm==4.67.1",
"click==8.3.1",
"clang-format==22.1.1"
]
keywords = ["programming language", "physics", "compiler", "units", "numerobis", "measurement", "education", "programming", "language", "units of measurement", "physics units"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Compilers",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Source = "https://github.com/rphle/numerobis"
Issues = "https://github.com/rphle/numerobis/issues"
[project.scripts]
nbis = "numerobis.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
numerobis = ["runtime/libruntime.a", "runtime/libgraphics.a", "stdlib/*.nbis", "exceptions/messages.txt", "runtime/numerobis/**/*"]