-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (44 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
46 lines (44 loc) · 1.42 KB
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
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python', 'numpy']
[project]
name = 'simframe'
version = '1.0.5'
description = 'Framework for Scientific Simulations'
readme = { file = 'README.md', content-type = 'text/markdown' }
keywords = [
'numerical',
'simulation',
'integration',
'science',
'mathematics',
'physics',
]
authors = [
{ name = 'Sebastian Stammler', email = 'sebastian.stammler@gmail.com' },
{ name = 'Til Birnstiel', email = 'til.birnstiel@lmu.de' },
]
maintainers = [
{ name = 'Sebastian Stammler', email = 'sebastian.stammler@gmail.com' },
{ name = 'Tilman Birnstiel', email = 'til.birnstiel@lmu.de' },
]
license = { file = 'LICENSE' }
classifiers = [
'Development Status :: 5 - Production/Stable',
'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 :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
]
dependencies = ['dill', 'h5py', 'matplotlib', 'numpy', 'scipy']
[project.urls]
Repository = 'https://github.com/stammler/simframe/'
Documentation = 'https://simframe.readthedocs.io/'