Skip to content
Snippets Groups Projects
Commit 259d35d8 authored by 数学の武士's avatar 数学の武士
Browse files

.

parent 96119ae5
No related branches found
No related tags found
No related merge requests found
import setuptools
# import setuptools
if __name__ == "__main__":
setuptools.setup(
name='plotter',
# if __name__ == "__main__":
# setuptools.setup(
# name='plotter',
# version="0.1",
# install_requires=[
# "numpy>=1.23.5",
# "matplotlib >=3.6.2",
# "natsort >=8.2.0",
# "imageio >=2.22.4"],
# packages=setuptools.find_packages(
# where='.',
# include=['plotter*'])
# )
from setuptools import setup, find_packages
import conda_build.bdist_conda
setup(
name="plotter",
version="0.1",
distclass=conda_build.bdist_conda.CondaDistribution,
conda_buildnum=0,
conda_preserve_egg_dir=False,
install_requires=[
"numpy>=1.23.5",
"matplotlib >=3.6.2",
"natsort >=8.2.0",
"imageio >=2.22.4"],
packages=setuptools.find_packages(
packages=find_packages(
where='.',
include=['plotter*'])
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment