-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (34 loc) · 1.06 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
[project]
name = "opticks"
version = "0.1.0"
dependencies = ["numpy", "scipy", "pint", "strictyaml", "prysm", "matplotlib"]
requires-python = ">=3.11"
authors = [{ name = "Egemen Imre" }]
description = "Optical System Analysis Tools and Models"
readme = "README.md"
license = { file = "LICENSE.md" }
keywords = [
"optics",
"optical design",
"drone",
"robot vision",
"satellite",
"remote sensing",
"earth observation",
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "https://github.com/egemenimre/opticks/"
Documentation = "https://opticks.readthedocs.io/en/latest/"
Repository = "https://github.com/egemenimre/opticks/"
[project.optional-dependencies]
test = ["pytest", "coverage", "pytest-xdist"]
doc = ["sphinx"]