/
bari
/
PlasmaTorch
Обзор
Документация
Войти
/
bari
/
PlasmaTorch
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
setup.py
24 строки
691 B
bari
Refine dependencies and README guidance
19 июн 2026, 14:40
19 июн 2026, 14:40
920ed2a
Код
Авторство
О чём код?
"""Setup script for editable installs.""" from __future__ import annotations from setuptools import find_packages, setup setup( name="plast", version="0.1.0", description="GPU-accelerated differentiable solver for quasi-1D plasma pulse propagation.", license="Personal use only; no company or organizational use without prior written permission", package_dir={"": "src"}, packages=find_packages(where="src", include=["plast", "plast.*"]), install_requires=["torch>=2.9.0"], extras_require={ "full": [ "matplotlib>=3.10.6", "jupyterlab>=4.4.7", "notebook>=7.4.5", "tqdm>=4.67.1", ], }, )