Skip to content
Snippets Groups Projects
setup.py 368 B
Newer Older
数学の武士's avatar
.  
数学の武士 committed
import setuptools
数学の武士's avatar
数学の武士 committed

数学の武士's avatar
.  
数学の武士 committed
if __name__ == "__main__":
    setuptools.setup(
        name='plotter',
数学の武士's avatar
数学の武士 committed
        version="0.2",
        install_requires=[
          "numpy>=1.23.5",
          "matplotlib >=3.6.2",
          "natsort >=8.2.0",
          "imageio >=2.22.4"],
数学の武士's avatar
.  
数学の武士 committed

        packages=setuptools.find_packages(
数学の武士's avatar
数学の武士 committed
          where='.',
          include=['plotter*'])
数学の武士's avatar
.  
数学の武士 committed
        )