-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 1.15 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
[build-system]
requires = ["setuptools>=42", "wheel", "versioneer[toml]==0.26"]
build-backend = "setuptools.build_meta"
[project]
name = "CUQIpy-PyTorch"
description = "CUQIpy plugin for PyTorch"
maintainers = [
{name = "Nicolai A. B. Riis", email = "[email protected]"},
{name = "Jakob S. Jørgensen", email = "[email protected]"},
{name = "Amal M. Alghamdi", email = "[email protected]"},
{name = "Chao Zhang", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
dynamic = ["dependencies", "version"]
[project.urls]
Source = "https://github.com/CUQI-DTU/CUQIpy-PyTorch"
Download = "https://github.com/CUQI-DTU/CUQIpy-PyTorch/releases"
[tool.setuptools.packages.find]
include = ["cuqipy_pytorch*"] # package names should match these glob patterns (["*"] by default)
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.versioneer]
VCS = "git"
style = "pep440-pre" # This style is compliant with PyPI
versionfile_source = "cuqipy_pytorch/_version.py"
versionfile_build = "cuqipy_pytorch/_version.py"
tag_prefix = "v" # Tag is prefixed with "v" (e.g. v1.0.0)
parentdir_prefix = "cuqipy_pytorch-"