forked from mhycheung/glworia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (31 loc) · 853 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
version = "0.0.0"
name = "glworia"
authors = [
{ name="Mark Ho-Yeuk Cheung", email="[email protected]" },
]
description = "A package for wave-optics lensing calculations"
readme = "README.md"
requires-python = ">=3.8,<3.12"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"jax>0.3.23",
"jaxlib>0.3.23",
"matplotlib>3.6.1",
"numpy>1.23",
"scipy>1.9.3",
"tqdm>4.61.1",
]
[project.urls]
"Homepage" = "https://github.com/mhycheung/glworia"
"Bug Tracker" = "https://github.com/mhycheung/glworia/issues"