-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) · 997 Bytes
/
pyproject.toml
File metadata and controls
44 lines (35 loc) · 997 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
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "folps"
dynamic = ["version"]
description = "FOLPS code (includes JAX)"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Hernan E. Noriega", email = "henoriega@icf.unam.mx"},
{name = "Prakhar Bansal", email = "prakharb@umich.edu"},
{name = "Alejandro Aviles", email = "avilescervantes@gmail.com"}
]
license = {text = "BSD-3-Clause"}
requires-python = ">=3.7"
dependencies = [
"numpy",
"scipy",
"jax",
"interpax"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/henoriega/FOLPSpipe"
[tool.setuptools.dynamic]
version = {attr = "folps._version.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["folps*"]
[tool.setuptools]
include-package-data = true