-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.6 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=65", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pyharm"
version = "0.0.1"
dynamic = ["dependencies"]
description = "Polyharmonic spline interpolation in PyTorch"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Ivan Zanardi", email = "ivan.zanardi.us@gmail.com"}
]
requires-python = ">=3.8"
keywords = [
"Python",
"PyTorch",
"Interpolation",
"Spline",
"Polyharmonic Spline",
"RBF",
"Radial Basis Function"
]
classifiers = [
"Development Status :: 1 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
Homepage = "https://github.com/ivanZanardi/pyharm"
"Bug Tracker" = "https://github.com/ivanZanardi/pyharm/issues"
Changelog = "https://github.com/ivanZanardi/pyharm/releases"
Documentation = "https://pyharm.readthedocs.io"
[tool.autopep8]
max_line_length = 79
ignore = ["E501", "W6"]
in-place = true
recursive = true
aggressive = 3
[tool.setuptools.packages.find]
where = ["."]
exclude = ["docs*", "examples*"]
[project.optional-dependencies]
test = ["pytest"]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = ["tests"]