-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
40 lines (31 loc) · 1.08 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
[project]
name = "cliffordlayers"
dynamic = ["version"]
description = "A PyTorch library for Clifford layers"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [{name = "Jayesh K. Gupta", email = "[email protected]"}, {name="Johannes Brandstetter", email="[email protected]"}, {name="David Ruhe", email="[email protected]"}]
dependencies = ["torch"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
homepage = "https://microsoft.github.io/cliffordlayers"
repository = "https://github.com/microsoft/cliffordlayers"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2", "wheel"]
[tool.setuptools]
packages = ["cliffordlayers"]
[tool.setuptools_scm]
[tool.ruff]
ignore = ['E501', 'E741']
[tool.black]
line-length = 120