-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (41 loc) · 1.02 KB
/
pyproject.toml
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
# python -m build
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "memo-lang"
dynamic = ["version"]
authors = [
{name = "Kartik Chandra"},
{name = "Tony Chen"}
]
license = {file = "LICENSE"}
description = "A language for mental models"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [ "jax" ]
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License"
]
[project.urls]
Homepage = "http://github.com/kach/memo"
Repository = "http://github.com/kach/memo.git"
Issues = "http://github.com/kach/memo/issues"
[tool.setuptools]
packages = ["memo"]
[tool.setuptools.dynamic]
version = {attr = "memo.__version__"}
[tool.mypy]
strict = true
exclude = [
"demo/.*",
"utils\\.py",
"comic\\.py",
"lib\\.py"
]
[[tool.mypy.overrides]]
module = [ "memo.*" ]
follow_imports = "skip" # or "error"