from setuptools import setup, find_packages from pathlib import Path install_requires = [ 'numpy', 'pygfx @ git+https://github.com/pygfx/pygfx.git@main', 'jupyterlab', 'jupyterlab-widgets==1.1.1', 'ipywidgets<8.0.0', 'jupyter-rfb', ] with open(Path(__file__).parent.joinpath("README.md")) as f: readme = f.read() with open(Path(__file__).parent.joinpath("fastplotlib", "VERSION"), "r") as f: ver = f.read().split("\n")[0] classifiers = [ "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering :: Visualization", "License :: OSI Approved :: Apache Software License", ] setup( name='fastplotlib', version=ver, long_description=readme, long_description_content_type='text/markdown', packages=find_packages(), url='https://github.com/kushalkolar/fastplotlib', license='Apache 2.0', author='Kushal Kolar', author_email='', python_requires='>=3.8', install_requires=install_requires, include_package_data=True, description='A fast plotting library built using the pygfx render engine' )