forked from Davide-sd/sympy-plot-backends
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·56 lines (52 loc) · 1.91 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
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
import os
# TODO:
# 1. can I remove msgpack as a dependency? It should be included with
# K3D. If not, do a commit on K3D to fix the issue.
# Once its time to remove it, also remove it from conda/meta.yaml
def readme():
with open("README.md") as f:
return f.read()
here = os.path.dirname(os.path.abspath(__file__))
version_ns = {}
with open(os.path.join(here, 'spb', '_version.py')) as f:
exec (f.read(), {}, version_ns)
setup(
name="sympy_plot_backends",
version=version_ns["__version__"],
description="Backends for plotting with SymPy",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics"
],
keywords="sympy plot plotting backend plotly bokeh mayavi k3d panel",
url="https://github.com/Davide-sd/sympy-plot-backends",
author="Davide Sandona",
author_email="[email protected]",
license="BSD License",
packages=find_packages(exclude=("tests", )),
include_package_data=True,
zip_safe=False,
install_requires=[
"appdirs>=1.4.4",
"numpy>=1.21.1",
"scipy>=1.7.1", # helps when lambdifying expressions
"sympy>=1.10.1",
"matplotlib>3.4.2", # v3.4.2 is required for tests to pass
"mergedeep>=1.3.4",
"ipympl>=0.7.0",
"plotly>=4.14.3",
"colorcet",
"panel>=0.13.0", # this includes param and bokeh
"ipywidgets_bokeh", # starting from panel v0.13.0, it is not part of panel anymore
"k3d>=2.9.7",
"vtk", # needed for streamlines in k3d
"adaptive>=0.13.1"
],
)