-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
45 lines (41 loc) · 1.25 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
[build-system]
requires = ["setuptools", "wheel"]
[tool.setuptools.packages.find]
include = ["pyquda_utils*"]
[tool.setuptools.dynamic]
version = { attr = "pyquda_utils._version.__version__" }
[project]
dynamic = ["version"]
name = "PyQUDA-Utils"
dependencies = ["PyQUDA"]
requires-python = ">=3.8"
authors = [
{ name = "SaltyChiang", email = "SaltyChiang@users.noreply.github.com" },
]
maintainers = [
{ name = "SaltyChiang", email = "SaltyChiang@users.noreply.github.com" },
]
description = "Utility scripts based on PyQUDA"
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"lattice-gauge-theory",
"lattice-field-theory",
"lattice-qcd",
"hep-lat",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Cython",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Environment :: GPU",
"Environment :: GPU :: NVIDIA CUDA",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "https://github.com/CLQCD/PyQUDA"
Documentation = "https://github.com/CLQCD/PyQUDA/wiki/Documentation"
Repository = "https://github.com/CLQCD/PyQUDA.git"
Issues = "https://github.com/CLQCD/PyQUDA/issues"