1
0
forked from pool/python-plotly

Accepting request 517548 from devel:languages:python

New package

OBS-URL: https://build.opensuse.org/request/show/517548
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-plotly?expand=0&rev=1
This commit is contained in:
Dominique Leuenberger 2017-08-28 13:11:16 +00:00 committed by Git OBS Bridge
commit 21d4e82337
5 changed files with 120 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
plotly-2.0.14.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cec2dab417ae0e1ca1bcabc2e95c9c58b75538b3b7056cf7e6e921ad614a1d0d
size 1030989

17
python-plotly.changes Normal file
View File

@ -0,0 +1,17 @@
-------------------------------------------------------------------
Thu Aug 17 15:06:34 UTC 2017 - toddrme2178@gmail.com
- Update to python-plotly-2.0.14
- Fix imports
-------------------------------------------------------------------
Wed Aug 2 10:16:04 UTC 2017 - alarrosa@suse.com
- Update to python-plotly-2.0.12
- Use singlespec macros
-------------------------------------------------------------------
Wed Apr 29 13:23:34 UTC 2015 - toddrme2178@gmail.com
- Initial version

76
python-plotly.spec Normal file
View File

@ -0,0 +1,76 @@
#
# spec file for package python-plotly
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-plotly
Version: 2.0.14
Release: 0
Summary: Library for collaborative, interactive, publication-quality graphs
License: MIT
Group: Development/Languages/Python
Url: https://plot.ly/api/python
Source: https://files.pythonhosted.org/packages/source/p/plotly/plotly-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module decorator >= 4.0.6}
BuildRequires: %{python_module jupyter_nbformat >= 4.2}
BuildRequires: %{python_module pytz}
BuildRequires: %{python_module requests}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-decorator >= 4.0.6
Requires: python-jupyter_nbformat >= 4.2
Requires: python-pytz
Requires: python-requests
Requires: python-six
Recommends: python-jupyter_ipython
Recommends: python-jupyter_ipywidgets
Recommends: python-jupyter_notebook
Recommends: python-matplotlib >= 1.3.1
Recommends: python-numpy
Recommends: python-pandas
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%python_subpackages
%description
Use this package to make collaborative, interactive,
publication-quality graphs from Python on https://plot.ly.
Plotly is an online collaborative data analysis and graphing tool. The
Python API allows you to access all of Plotly's functionality from Python.
Plotly figures are shared, tracked, and edited all online and the data is
always accessible from the graph.
%prep
%setup -q -n plotly-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%defattr(-,root,root,-)
%doc README.rst
%{python_sitelib}/*
%changelog