-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 1.02 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
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[project]
name = "tensorlogic"
version = "0.0.4"
description = "Tensor Logic: a named-index tensor language that unifies logic and tensor computation."
readme = "README.md"
license = "Apache-2.0"
authors = [{ name = "Davit Buniatyan", email = "davit@activeloop.ai" }]
requires-python = ">=3.9"
dependencies = ["numpy>=1.21"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
torch = ["torch>=2.0"]
[tool.hatch.build.targets.sdist]
include = ["tensorlogic", "README.md", "LICENSE", "examples", "examples_torch", "tests"]
[tool.hatch.build.targets.wheel]
packages = ["tensorlogic"]
[dependency-groups]
dev = [
"pytest>=8.4.2",
]