forked from fastplotlib/fastplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (34 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
from pathlib import Path
install_requires = [
'numpy',
'pygfx>=0.1.10',
'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'
)