-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.62 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
[tool.isort]
profile = "black"
[tool.setuptools_scm]
local_scheme = "no-local-version"
version_scheme = "post-release"
[tool.setuptools.packages.find]
include = ["PySDM", "PySDM*"]
[build-system]
requires = ['setuptools==75.3.0', 'setuptools-scm==8.3.1']
build-backend = "setuptools.build_meta"
[project]
name = "pysdm"
description = "Pythonic particle-based (super-droplet) warm-rain/aqueous-chemistry cloud microphysics package with box, parcel & 1D/2D prescribed-flow examples in Python, Julia and Matlab"
readme = "README.md"
keywords = ["physics-simulation", "monte-carlo-simulation", "gpu-computing",
"atmospheric-modelling", "particle-system", "numba", "thrust",
"nvrtc", "pint", "atmospheric-physics",
]
license = {text = "GPL-3.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
]
requires-python = ">= 3.8"
authors = [
{name = "https://github.com/open-atmos/PySDM/graphs/contributors", email = "[email protected]"}
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
Tracker = "https://github.com/open-atmos/PySDM/issues"
Documentation = "https://open-atmos.github.io/PySDM"
Source = "https://github.com/open-atmos/PySDM"