forked from trueagi-io/hyperon-experimental
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.14 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
[build-system]
requires = ["setuptools==65.6.3", "conan==1.60.2", "cmake==3.26.4", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "hyperon"
description = "Hyperon API in Python"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["metta", "hyperon", "opencog"]
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
dependencies = [
'importlib-metadata==6.6.0; python_version<"3.8"',
]
dynamic = ["version"]
[project.scripts]
metta = "hyperon.metta:main"
[project.optional-dependencies]
dev = [
"build==0.10.0",
"pytest==7.3.2",
]
[tool.setuptools]
packages = [ "hyperon" ]
package-dir = { "hyperon" = "hyperon" }
[tool.cibuildwheel]
before-all = "sh -c ./python/install-hyperonc.sh"
# no Rust toolchain is available for musllinux-i686 environment
skip = "*-musllinux_i686"
test-requires = ["pytest==7.3.2"]
test-command = "pytest {project}/python/tests"
[tool.setuptools_scm]
root = '..'