-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
45 lines (42 loc) · 1.18 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
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyMRAW"
version = "0.32"
authors = [{name = "Jaka Javh, Janko Slavič, Domen Gorjup", email = "[email protected]"}]
maintainers = [{name = "Janko Slavič et al.", email = "[email protected]"}]
license = "MIT"
description = "Module for reading and writing Photron MRAW image sequences."
readme = "readme.rst"
keywords = ["read/write", "Photron", "mraw", "cihx", "cih"]
requires-python = ">=3.10"
dependencies = [
"colorama>=0.3.7",
"nose>=1.3.7",
"numpy>=1.12.0",
"py>=1.4.32",
"xmltodict>=0.12.0",
"numba>=0.56.4",
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = [
"sphinx",
"twine",
"wheel",
"build",
"pytest",
"sphinx-rtd-theme",
"sphinx-copybutton>=0.5.2",
]
[project.urls]
homepage = "https://github.com/ladisk/pyMRAW"
documentation = "https://github.com/ladisk/pyMRAW"
source = "https://github.com/ladisk/pyMRAW"