-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
25 lines (22 loc) · 793 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = 'InvPyplot'
dynamic = ["readme"]
license = {file = "LICENSE"}
version="0.0.8"
description = "Python package enabling plotting of .inv files exported from Res2DInv in matplotlib"
keywords = ["Res2dInv", "electrical", "resistivity", "geophysics", "plot", 'inv']
requires-python = ">=3.0"
dependencies = ["numpy", "pandas", "matplotlib", "scipy"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
[project.urls]
"Homepage" = "https://github.com/RJbalikian/InvPyplot"
"API Documentation" = "https://rjbalikian.github.io/InvPyplot/"