Files
mikoto10032--deeplearning/books/PRML/PRML-master-Python/setup.py
T
2026-07-13 13:30:25 +08:00

14 lines
309 B
Python
Executable File

from setuptools import setup, find_packages
setup(
name="prml",
version="0.0.1",
description="Collection of PRML algorithms",
author="ctgk",
python_requires=">=3.6",
install_requires=["numpy", "scipy"],
packages=find_packages(exclude=["test", "test.*"]),
test_suite="test"
)