-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
141 lines (125 loc) · 3.37 KB
/
Copy pathpyproject.toml
File metadata and controls
141 lines (125 loc) · 3.37 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "promethium-seismic"
version = "1.0.4"
description = "Promethium - Advanced Seismic Data Recovery and Reconstruction Framework. State-of-the-art AI-driven framework for seismic signal reconstruction, denoising, and geophysical data enhancement."
authors = [{name = "Olaf Yunus Laitinen Imanov", email = "contact@promethium.dev"}]
readme = "README.md"
license = {text = "CC-BY-NC-4.0"}
requires-python = ">=3.10"
keywords = [
"seismic",
"geophysics",
"reconstruction",
"deep-learning",
"signal-processing",
"pytorch",
"machine-learning",
"earthquake",
"seismic-data",
"denoising",
"data-recovery",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
# Core dependencies - lightweight for library usage
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"pandas>=2.0",
"xarray>=2023.0",
"obspy>=1.4.0",
"segyio>=1.9.0",
"torch>=2.0.0",
"scikit-learn>=1.2.0",
"pyyaml>=6.0",
"tqdm>=4.65.0",
"zarr>=2.12.0",
"PyWavelets>=1.4.0",
"requests>=2.25.0",
]
[project.optional-dependencies]
# Server dependencies for backend deployment
server = [
"fastapi>=0.110.0",
"uvicorn[standard]>=0.22.0",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"sqlalchemy>=2.0",
"aiosqlite>=0.19.0",
"asyncpg>=0.29.0",
"celery>=5.3.0",
"redis>=4.6.0",
"python-multipart>=0.0.6",
"typer>=0.9.0",
]
# Development dependencies
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"ruff>=0.0.270",
"mypy>=1.3.0",
"httpx>=0.24.0",
"build>=1.0.4",
"twine>=4.0.0",
]
# Visualization dependencies
viz = [
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
]
# Full installation with all optional dependencies
all = [
"promethium[server,dev,viz,cli]",
]
# CLI dependencies
cli = [
"typer>=0.9.0",
"rich>=13.0.0",
]
[project.scripts]
promethium = "promethium.cli:main"
[project.urls]
Homepage = "https://github.com/olaflaitinen/Promethium"
Documentation = "https://github.com/olaflaitinen/Promethium#readme"
Repository = "https://github.com/olaflaitinen/Promethium"
Issues = "https://github.com/olaflaitinen/Promethium/issues"
Changelog = "https://github.com/olaflaitinen/Promethium/blob/main/CHANGELOG.md"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["promethium*"]
[tool.setuptools.package-data]
promethium = ["py.typed"]
[tool.ruff]
line-length = 88
target-version = "py310"
select = ["E", "F", "I", "B", "UP"]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true