-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (47 loc) · 1.5 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
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python', 'numpy']
[project]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
]
name = 'dustpylib'
version = '0.6.0'
description = 'Library of DustPy extensions'
readme = { file = 'README.md', content-type = 'text/markdown' }
keywords = ['science', 'physics', 'mathematics', 'visualization']
authors = [
{ name = 'Sebastian Stammler', email = '[email protected]' },
{ name = 'Til Birnstiel', email = '[email protected]' },
{ name = 'Matías Garaté' },
]
maintainers = [
{ name = 'Sebastian Stammler', email = '[email protected]' },
{ name = 'Tilman Birnstiel', email = '[email protected]' },
]
license = { file = 'LICENSE' }
dependencies = [
'astropy',
'dsharp_opac',
'dustpy',
'matplotlib',
'numpy',
'scipy',
'simframe',
]
[project.urls]
Repository = 'https://github.com/stammler/dustpylib/'
Documentation = 'https://dustpylib.readthedocs.io/'