forked from SiLab-Bonn/pylandau
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 855 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 855 Bytes
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
[project]
name = 'pylandau'
version = '2.2.1'
dynamic = ["keywords"]
description = 'A Landau PDF definition to be used in Python.'
license = {file = 'LICENSE'}
requires-python = '>=3.8'
readme = 'README.md'
authors = [
{name = 'David-Leon Pohl', email = 'pohl@physik.uni-bonn.de'},
{name = 'Christian Bespin', email = 'bespin@physik.uni-bonn.de'}
]
maintainers = [
{name = 'Christian Bespin', email = 'bespin@physik.uni-bonn.de'}
]
dependencies = [
# "cython>=0.29",
"cython==0.29.34",
"numpy>=1.21",
"scipy>=1.7",
]
[project.urls]
repository = 'https://github.com/SiLab-Bonn/pyLandau'
[build-system]
# Minimum requirements for the build system to execute.
requires = [
"setuptools",
"wheel",
"numpy>=1.21",
"cython==0.29.34",
# "cython>=0.29",
] # PEP 508 specifications
build-backend = "setuptools.build_meta"