-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (50 loc) · 1.41 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
[build-system]
requires = ["setuptools","wheel","numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "seidart"
version = "0.1.1"
license = {file = "LICENSE.txt"}
description = "seidarT is a 2 and 2.5d seismic and electromagnetic modeling suite."
requires-python = ">=3.11"
readme = "README.md"
authors = [
{ name = "Steven Bernsen", email = "[email protected]"},
{ name = "Christopher Gerbi", email = "[email protected]"},
]
maintainers = [
{ name = "Steven Bernsen", email = "[email protected]"},
{ name = "Christopher Gerbi", email = "[email protected]"},
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"pandas",
"mplstereonet",
"pyevtk",
"glob2"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Framework :: Matplotlib",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Development Status :: 4 - Beta",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = [
"seidart",
"seidart.fortran",
"seidart.routines",
"seidart.simulations",
"seidart.visualization"
]
# Optionals
[project.urls]
homepage = "https://github.com/sbernsen/SeidarT"
documentation = "https://umainedynamics.github.io/SeidarT/index.html"