-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
37 lines (33 loc) · 921 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pytorch-quadconv"
description = "PyTorch quadrature convolution layer and associated functionality."
readme = "README.md"
version = "0.1.0"
license = {file = "LICENSE"}
authors = [
{name = "Cooper Simpson", email = "simpson.r.cooper@gmail.com"},
{name = "Kevin Doherty", email = "kevin.doherty@colorado.edu"}
]
keywords = [
"Machine Learning",
"Deep Learning"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3-Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
requires-python = ">=3.6"
dependencies = [
]
[tool.setuptools.packages.find]
include = ["torch_quadconv*"]
[project.optional-dependencies]
test = ["pytest"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--import-mode=importlib"]