-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (33 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
42 lines (33 loc) · 1.01 KB
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
[project]
name = "expsolve"
version = "0.1.7"
description = "A PyTorch compatible Differentiable Numerical Algorithms package for computational quantum mechanics"
readme = "README.md"
license = { text = "MIT" }
keywords = [
"quantum", "PDE", "exponential", "splitting", "integrator", "fourier", "dispersive"
]
authors = [
{ name="Pranav Singh", email="ps2106@bath.ac.uk" },
]
maintainers = [
{ name="Pranav Singh", email="ps2106@bath.ac.uk" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics"
]
requires-python = ">=3.7"
dependencies = [
"numpy>=1.16.5",
"torch>=1.13.1"
]
[project.urls]
"Homepage" = "https://github.com/brownadder/expsolve"
"Bug Tracker" = "https://github.com/brownadder/expsolve"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# To install locally, go to the expsolve directory in terminal and run "pip install -e ."