-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (52 loc) · 1.76 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
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sprit"
authors = [{name="Riley Balikian"}, {name="Hongyu Xaio"}]
dynamic = ["readme"]
license = {file = "LICENSE"}
version="1.4.3"
description = "A package for processing and analyzing HVSR (Horizontal to Vertical Spectral Ratio) data"
keywords = ["HVSR", "seismic", "horizontal to vertical spectral ratio", "obspy", 'geology', 'geophysics', 'geotechnical']
requires-python = ">=3.9"
dependencies = ["obspy", "scipy", "matplotlib", "pandas", "numpy", "pyproj", 'ipython', 'ipywidgets', 'plotly', 'nbformat', 'PyQt5-sip', 'streamlit==1.34', 'xhtml2pdf']
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
#[tool.setuptools.dynamic]
#readme = {file = ["README.md"]}
[tool.poetry]
name='SpRIT Streamlit'
version="1.4.3"
description = "A package for processing and analyzing HVSR (Horizontal to Vertical Spectral Ratio) data"
authors = ["Riley Balikian <your_email@example.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10"
obspy = "*"
scipy = "*"
matplotlib = "*"
pandas = "*"
numpy = "*"
pyproj = "*"
ipython = "*"
ipywidgets = "*"
plotly = "*"
nbformat = "*"
PyQt5-sip = "*"
streamlit = "1.34"
sprit = "*"
[project.urls]
"Homepage" = "https://github.com/RJbalikian/SPRIT-HVSR"
"ReadtheDocs API Docs" = "https://sprit.readthedocs.io/en/latest/index.html"
"Github Pages API Docs" = "https://rjbalikian.github.io/SPRIT-HVSR/main.html"
"Tutorials & Wiki" = "https://github.com/RJbalikian/SPRIT-HVSR/wiki"
[project.scripts]
sprit = "sprit.sprit_cli:main"
[project.gui-scripts]
sprit-gui = "sprit.sprit_tkinter_ui:main"