forked from jleinonen/pytmatrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (65 loc) · 2.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
build-backend = 'mesonpy'
requires = [
"wheel",
"meson-python",#>=0.8.0",
"Cython",#>=0.29.21",
"numpy",#; python_version<='3.9'"
]
[project]
name = "mesonpytmatrix"
license = {file = "LICENSE"}
version = "0.3.8" # TODO last pytmatrix was 0.3.3
description = "T-matrix scattering computations"
long_description = "A Python code for computing the scattering properties of homogeneous nonspherical scatterers with the T-Matrix method - now build with meson ;)"
authors = [{name = "Jussi Leinonen", email = "[email protected]"}]
maintainers = [
{name = "Jussi Leinonen", email = "[email protected]"},
{name = "Davide Ori", email = "[email protected]"},
]
requires-python = ">=3.7"
dependencies = [
# TODO: update to "pin-compatible" once possible, see
# https://github.com/FFY00/meson-python/issues/29
"numpy>=1.19.5", ## DO: copied from apexpy, not sure if it is still relevant
"scipy",
]
readme = "README.md"
keywords = [
"scattering",
"spheroids",
"T-matrix",
"weather radar",
]
classifiers = [
"Development Status :: 4 - Beta", # TODO maybe switch to 5 Production/Stable
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Fortran",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Utilities",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
# dynamic = ['version']
[project.optional-dependencies]
test = [
"unittest",
]
#doc = ["sphinx>=1.3", "sphinx-rtd-theme"]
[project.urls]
source = 'https://github.com/jleinonen/pytmatrix'
documentation = "https://github.com/jleinonen/pytmatrix/wiki"
tracker = "https://github.com/jleinonen/pytmatrix/issues"
download = "https://github.com/jleinonen/pytmatrix/releases"