-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
47 lines (45 loc) · 1.46 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
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python', 'numpy']
[project]
name = 'dustpy'
version = '1.0.6'
description = 'Dust evolution in protoplanetary disks'
readme = { file = 'README.md', content-type = 'text/markdown' }
keywords = [
"numerical",
"simulation",
"science",
"physics",
"astrophysics",
"astronomy",
]
authors = [
{ name = "Sebastian Stammler", email = "[email protected]" },
{ name = "Til Birnstiel", email = "[email protected]" },
{ name = "León-Alexander Hühn", email = "[email protected]" },
]
maintainers = [
{ name = "Sebastian Stammler", email = "[email protected]" },
{ name = "Tilman Birnstiel", email = "[email protected]" },
]
license = { text = "GPLv3" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Fortran",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = ["matplotlib", "numpy", "requests", "simframe>=0.5.3"]
[project.urls]
Repository = "https://github.com/stammler/dustpy/"
Documentation = "https://stammler.github.io/dustpy/"