-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 1.04 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
[build-system]
requires = [
"setuptools>=68",
"wheel",
"torch>=1.6.0",
"numpy",
]
build-backend = "setuptools.build_meta"
[project]
name = "compactlogic"
version = "0.1.0"
description = "Logic gate neural networks with differentiable training and fast discrete inference"
readme = "README.md"
requires-python = ">=3.6"
license = { text = "MIT" }
authors = [
{ name = "Shengpu Wang", email = "wangshen@ethz.ch" },
]
dependencies = [
"torch>=1.6.0",
"numpy",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/ShengpuWang1/compact-logic"
[tool.setuptools]
include-package-data = true
packages = ["compactlogic"]