Spaces:
Sleeping
Sleeping
| #!/usr/bin/env python3 | |
| """ | |
| TSU-WAVE - Tsunami Spectral Understanding of Wave-Amplitude Variance and Energy | |
| """ | |
| from setuptools import setup, find_packages | |
| with open("README.md", "r", encoding="utf-8") as fh: | |
| long_description = fh.read() | |
| with open("requirements.txt", "r", encoding="utf-8") as f: | |
| requirements = [line.strip() for line in f if line.strip() and not line.startswith("#")] | |
| setup( | |
| name="tsu-wave", | |
| version="1.0.0", | |
| author="Samir Baladi", | |
| author_email="gitdeeper@gmail.com", | |
| description="TSU-WAVE: Tsunami Spectral Understanding of Wave-Amplitude Variance and Energy - A physics-based framework for real-time tsunami analysis", | |
| long_description=long_description, | |
| long_description_content_type="text/markdown", | |
| url="https://gitlab.com/gitdeeper4/tsu-wave", | |
| project_urls={ | |
| "Documentation": "https://tsu-wave.netlify.app", | |
| "Source Code": "https://gitlab.com/gitdeeper4/tsu-wave", | |
| "Bug Tracker": "https://gitlab.com/gitdeeper4/tsu-wave/-/issues", | |
| "DOI": "https://doi.org/10.5281/zenodo.XXXXXXXX", | |
| }, | |
| classifiers=[ | |
| "Development Status :: 5 - Production/Stable", | |
| "Intended Audience :: Science/Research", | |
| "Intended Audience :: Education", | |
| "License :: OSI Approved :: MIT License", | |
| "Programming Language :: Python :: 3", | |
| "Programming Language :: Python :: 3.8", | |
| "Programming Language :: Python :: 3.9", | |
| "Programming Language :: Python :: 3.10", | |
| "Programming Language :: Python :: 3.11", | |
| "Topic :: Scientific/Engineering", | |
| "Topic :: Scientific/Engineering :: Physics", | |
| "Topic :: Scientific/Engineering :: Oceanography", | |
| "Natural Language :: English", | |
| "Operating System :: OS Independent", | |
| ], | |
| package_dir={"": "src"}, | |
| packages=find_packages(where="src"), | |
| python_requires=">=3.8", | |
| install_requires=requirements, | |
| extras_require={ | |
| "dev": [ | |
| "pytest>=7.0.0", | |
| "pytest-cov>=4.0.0", | |
| "black>=23.0.0", | |
| "isort>=5.12.0", | |
| "flake8>=6.0.0", | |
| "mypy>=1.0.0", | |
| ], | |
| "docs": [ | |
| "mkdocs>=1.5.0", | |
| "mkdocs-material>=9.0.0", | |
| ], | |
| }, | |
| entry_points={ | |
| "console_scripts": [ | |
| "tsu-wave=tsuwave.cli:main", | |
| "tsu-wave-monitor=tsuwave.cli:monitor", | |
| "tsu-wave-forecast=tsuwave.cli:forecast", | |
| ], | |
| }, | |
| include_package_data=True, | |
| zip_safe=False, | |
| ) | |